source: src/unittests/Makefile.am@ 31ca5f

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 31ca5f was 31ca5f, checked in by Frederik Heber <heber@…>, 13 years ago

StockClient and StockServer now exchange FragmentJob's instead of stock's.

  • Property mode set to 100644
File size: 5.2 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4check_PROGRAMS =
5noinst_PROGRAMS =
6TESTS =
7XFAIL_TESTS =
8
9include ../../src/Actions/unittests/Makefile.am
10include ../../src/Analysis/unittests/Makefile.am
11include ../../src/Atom/unittests/Makefile.am
12include ../../src/Descriptors/unittests/Makefile.am
13include ../../src/Element/unittests/Makefile.am
14include ../../src/Filling/unittests/Makefile.am
15include ../../src/Fragmentation/unittests/Makefile.am
16include ../../src/Graph/unittests/Makefile.am
17include ../../src/LinkedCell/unittests/Makefile.am
18include ../../src/Parser/unittests/Makefile.am
19include ../../src/RandomNumbers/unittests/Makefile.am
20include ../../src/Shapes/unittests/Makefile.am
21include ../../src/Tesselation/unittests/Makefile.am
22include ../../src/UIElements/CommandLineUI/unittests/Makefile.am
23include ../../src/UIElements/Menu/unittests/Makefile.am
24
25INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/src
26
27AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
28AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
29
30GENERALTESTS = \
31 AtomIdSetUnitTest \
32 BoxUnitTest \
33 Box_BoundaryConditionsTest \
34 FormulaUnittest \
35 ListOfBondsUnitTest \
36 MoleculeUnitTest \
37 WorldTimeUnitTest
38
39# these ones are checked
40TESTS += $(GENERALTESTS)
41# these ones are built for checking only
42check_PROGRAMS += $(GENERALTESTS)
43# ... and not installed
44noinst_PROGRAMS += $(GENERALTESTS)
45
46if CONDECUT
47noinst_PROGRAMS += TestRunner
48endif
49
50
51BOOST_LIB = \
52 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LIBS) \
53 $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
54 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
55 $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
56
57GENERALLIBS = \
58 ../libMolecuilder.la \
59 ../libMolecuilderHelpers.la \
60 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
61 ${CodePatterns_LIBS} \
62 $(BOOST_LIB)
63
64ALLLIBS = \
65 ../libMolecuilderFilling.la \
66 ../libMolecuilderUI.la \
67 ../libMolecuilder.la \
68 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
69 ${CodePatterns_LIBS} \
70 $(BOOST_LIB)
71
72TESTSOURCES = \
73 ${ACTIONTESTSSOURCES} \
74 ${ANALYSISTESTSSOURCES} \
75 ${DESCRIPTORTESTSSOURCES} \
76 ${ELEMENTTESTSSOURCES} \
77 ${FILLINGTESTSSOURCES} \
78 ${FRAGMENTATIONTESTSSOURCES} \
79 ${GRAPHTESTSSOURCES} \
80 ${LINKEDCELLTESTSSOURCES} \
81 ${LINEARALGEBRATESTSSOURCES} \
82 ${PARSERTESTSSOURCES} \
83 ${RANDOMNUMBERTESTSSOURCES} \
84 ${SHAPETESTSSOURCES} \
85 ${TESSELATIONTESTSSOURCES} \
86 $(UIELEMENTSCOMMANDLINEPARSERTESTSSOURCES) \
87 ${UIELEMENTSMENUTESTSSOURCES} \
88 stubs/ObserverStub.cpp \
89 AtomIdSetUnitTest.cpp \
90 BoxUnitTest.cpp \
91 Box_BoundaryConditionsUnitTest.cpp \
92 FormulaUnitTest.cpp \
93 ListOfBondsUnitTest.cpp \
94 MoleculeUnitTest.cpp \
95 WorldTimeUnitTest.cpp
96
97TESTHEADERS = \
98 ${ACTIONTESTSHEADERS} \
99 ${ANALYSISTESTSHEADERS} \
100 ${DESCRIPTORTESTSHEADERS} \
101 ${ELEMENTTESTSHEADERS} \
102 ${FILLINGTESTSHEADERS} \
103 ${FRAGMENTATIONTESTSHEADERS} \
104 ${GRAPHTESTSHEADERS} \
105 ${LINKEDCELLTESTHEADERS} \
106 ${LINEARALGEBRATESTSHEADERS} \
107 ${PARSERTESTSHEADERS} \
108 ${RANDOMNUMBERTESTSHEADERS} \
109 ${SHAPETESTSHEADERS} \
110 ${TESSELATIONTESTSHEADERS} \
111 $(UIELEMENTSCOMMANDLINEPARSERTESTSHEADERS) \
112 ${UIELEMENTSMENUTESTSHEADERS} \
113 stubs/ObserverStub.hpp \
114 AtomIdSetUnitTest.hpp \
115 BoxUnitTest.hpp \
116 Box_BoundaryConditionsUnitTest.hpp \
117 FormulaUnitTest.hpp \
118 ListOfBondsUnitTest.hpp \
119 MoleculeUnitTest.hpp \
120 WorldTimeUnitTest.hpp
121
122
123BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
124 BoxUnitTest.cpp \
125 BoxUnitTest.hpp \
126 stubs/ObserverStub.cpp \
127 stubs/ObserverStub.hpp \
128 ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
129 ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
130BoxUnitTest_LDADD = \
131 ../libMolecuilder.la \
132 ../libMolecuilderShapes.la \
133 ../libMolecuilderHelpers.la \
134 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
135 ${CodePatterns_LIBS}
136
137AtomIdSetUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
138 AtomIdSetUnitTest.cpp \
139 AtomIdSetUnitTest.hpp
140AtomIdSetUnitTest_LDADD = $(ALLLIBS)
141
142Box_BoundaryConditionsTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
143 Box_BoundaryConditionsUnitTest.cpp \
144 Box_BoundaryConditionsUnitTest.hpp \
145 ../Box_BoundaryConditions.cpp \
146 ../Box_BoundaryConditions.hpp
147Box_BoundaryConditionsTest_LDADD = \
148 ${CodePatterns_LIBS} \
149 $(BOOST_LIB)
150
151FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
152 FormulaUnitTest.cpp \
153 FormulaUnitTest.hpp
154FormulaUnittest_LDADD = $(ALLLIBS)
155
156ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
157 ListOfBondsUnitTest.cpp \
158 ListOfBondsUnitTest.hpp
159ListOfBondsUnitTest_LDADD = $(ALLLIBS)
160
161MoleculeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
162 MoleculeUnitTest.cpp \
163 MoleculeUnitTest.hpp
164MoleculeUnitTest_LDADD = \
165 ../libMolecuilderUI.la \
166 ../libMolecuilder.la \
167 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
168
169WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
170 WorldTimeUnitTest.cpp \
171 WorldTimeUnitTest.hpp \
172 ../WorldTime.cpp \
173 ../WorldTime.hpp
174WorldTimeUnitTest_LDADD = ${BOOST_LIB}
175
176
177TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
178TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
179
180#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.