source: src/unittests/Makefile.am@ dda246

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 dda246 was dda246, checked in by Frederik Heber <heber@…>, 14 years ago

Made Helpers into commodity library to prevent double inclusion.

  • This is also preparatory for Makefile refactoring.
  • Property mode set to 100644
File size: 8.1 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4SUBDIRS = \
5 ../Actions/unittests \
6 ../Descriptors/unittests \
7 ../LinearAlgebra/unittests \
8 ../Parser/unittests \
9 ../RandomNumbers/unittests \
10 ../Shapes/unittests \
11 ../UIElements/CommandLineUI/unittests \
12 ../UIElements/Menu/unittests
13
14INCLUDES = -I$(top_srcdir)/src
15
16AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
17AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
18
19TESTS = \
20 AnalysisBondsUnitTest \
21 AnalysisCorrelationToPointUnitTest \
22 AnalysisCorrelationToSurfaceUnitTest \
23 AnalysisPairCorrelationUnitTest \
24 BondGraphUnitTest \
25 BoxUnitTest \
26 CountBondsUnitTest \
27 FormulaUnittest \
28 LinkedCellUnitTest \
29 ListOfBondsUnitTest \
30 PeriodentafelUnitTest \
31 SubspaceFactorizerUnitTest \
32 TesselationUnitTest \
33 Tesselation_BoundaryTriangleUnitTest \
34 Tesselation_InOutsideUnitTest \
35 WorldTimeUnitTest
36
37
38check_PROGRAMS = $(TESTS)
39noinst_PROGRAMS = $(TESTS) TestRunner
40
41BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
42GSLLIBS = \
43 ../Shapes/libMolecuilderShapes.la \
44 ../LinearAlgebra/libMolecuilderLinearAlgebra.la \
45 ../Exceptions/libMolecuilderExceptions.la \
46 ../RandomNumbers/libMolecuilderRandomNumbers.la \
47 ../Helpers/libMolecuilderHelpers.la \
48 $(BOOST_LIB)
49ALLLIBS = \
50 ../UIElements/libMolecuilderUI.la \
51 ../Actions/libMolecuilderActions.la \
52 ${PARSERLIBS} \
53 ../libMolecuilder.la \
54 ${GSLLIBS}
55
56PARSERLIBS = ../Parser/libMolecuilderParser.la
57UILIBS = ../UIElements/libMolecuilderUI.la
58
59TESTSOURCES = \
60 ../Actions/unittests/ActionRegistryUnitTest.cpp \
61 ../Actions/unittests/ActionSequenceUnitTest.cpp \
62 AnalysisBondsUnitTest.cpp \
63 AnalysisCorrelationToPointUnitTest.cpp \
64 AnalysisCorrelationToSurfaceUnitTest.cpp \
65 AnalysisPairCorrelationUnitTest.cpp \
66 ../Descriptors/unittests/AtomDescriptorUnitTest.cpp \
67 ../Actions/unittests/AtomsCalculationUnitTest.cpp \
68 BondGraphUnitTest.cpp \
69 BoxUnitTest.cpp \
70 CountBondsUnitTest.cpp \
71 FormulaUnitTest.cpp \
72 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.cpp \
73 ../LinearAlgebra/unittests/LineUnitTest.cpp \
74 LinkedCellUnitTest.cpp \
75 ListOfBondsUnitTest.cpp \
76 ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
77 ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.cpp \
78 ../LinearAlgebra/unittests/MatrixContentUnitTest.cpp \
79 ../LinearAlgebra/unittests/MatrixUnitTest.cpp \
80 ../UIElements/CommandLineUI/unittests/CommandLineParser_ActionRegistry_ConsistenyUnitTest.cpp \
81 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.cpp \
82 ../Descriptors/unittests/MoleculeDescriptorUnitTest.cpp \
83 ../Parser/unittests/ParserMpqcUnitTest.cpp \
84 ../Parser/unittests/ParserPcpUnitTest.cpp \
85 ../Parser/unittests/ParserPdbUnitTest.cpp \
86 ../Parser/unittests/ParserTremoloUnitTest.cpp \
87 ../Parser/unittests/ParserXyzUnitTest.cpp \
88 PeriodentafelUnitTest.cpp \
89 ../LinearAlgebra/unittests/PlaneUnitTest.cpp \
90 ../Shapes/unittests/ShapeUnitTest.cpp \
91 TesselationUnitTest.cpp \
92 Tesselation_BoundaryTriangleUnitTest.cpp \
93 Tesselation_InsideOutsideUnitTest.cpp \
94 ../LinearAlgebra/unittests/VectorContentUnitTest.cpp \
95 ../LinearAlgebra/unittests/VectorUnitTest.cpp \
96 WorldTimeUnitTest.cpp
97
98TESTHEADERS = \
99 ../Actions/unittests/ActionRegistryUnitTest.hpp \
100 ../Actions/unittests/ActionSequenceUnitTest.hpp \
101 AnalysisBondsUnitTest.hpp \
102 AnalysisCorrelationToPointUnitTest.hpp \
103 AnalysisCorrelationToSurfaceUnitTest.hpp \
104 AnalysisPairCorrelationUnitTest.hpp \
105 ../Descriptors/unittests/AtomDescriptorUnitTest.hpp \
106 ../Actions/unittests/AtomsCalculationUnitTest.hpp \
107 BondGraphUnitTest.hpp \
108 BoxUnitTest.hpp \
109 CountBondsUnitTest.hpp \
110 FormulaUnitTest.hpp \
111 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.hpp \
112 ../LinearAlgebra/unittests/LineUnitTest.hpp \
113 LinkedCellUnitTest.hpp \
114 ListOfBondsUnitTest.hpp \
115 ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
116 ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.hpp \
117 ../LinearAlgebra/unittests/MatrixContentUnitTest.hpp \
118 ../LinearAlgebra/unittests/MatrixUnitTest.hpp \
119 ../UIElements/CommandLineUI/unittests/CommandLineParser_ActionRegistry_ConsistenyUnitTest.hpp \
120 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp \
121 ../Descriptors/unittests/MoleculeDescriptorUnitTest.hpp \
122 ../Parser/unittests/ParserMpqcUnitTest.hpp \
123 ../Parser/unittests/ParserPcpUnitTest.hpp \
124 ../Parser/unittests/ParserPdbUnitTest.hpp \
125 ../Parser/unittests/ParserTremoloUnitTest.hpp \
126 ../Parser/unittests/ParserXyzUnitTest.hpp \
127 PeriodentafelUnitTest.hpp \
128 ../LinearAlgebra/unittests/PlaneUnitTest.hpp \
129 ../Shapes/unittests/ShapeUnitTest.hpp \
130 TesselationUnitTest.hpp \
131 Tesselation_BoundaryTriangleUnitTest.hpp \
132 Tesselation_InsideOutsideUnitTest.hpp \
133 ../LinearAlgebra/unittests/VectorContentUnitTest.hpp \
134 ../LinearAlgebra/unittests/VectorUnitTest.hpp \
135 WorldTimeUnitTest.hpp
136
137
138AnalysisBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
139 AnalysisBondsUnitTest.cpp \
140 AnalysisBondsUnitTest.hpp
141AnalysisBondsUnitTest_LDADD = ${ALLLIBS}
142
143AnalysisCorrelationToPointUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
144 analysis_correlation.hpp \
145 AnalysisCorrelationToPointUnitTest.cpp \
146 AnalysisCorrelationToPointUnitTest.hpp
147AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
148
149AnalysisCorrelationToSurfaceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
150 analysis_correlation.hpp \
151 AnalysisCorrelationToSurfaceUnitTest.cpp \
152 AnalysisCorrelationToSurfaceUnitTest.hpp
153AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
154
155AnalysisPairCorrelationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
156 analysis_correlation.hpp \
157 AnalysisPairCorrelationUnitTest.cpp \
158 AnalysisPairCorrelationUnitTest.hpp
159AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
160
161BondGraphUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
162 BondGraphUnitTest.cpp \
163 BondGraphUnitTest.hpp
164BondGraphUnitTest_LDADD = ${ALLLIBS}
165
166BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
167 BoxUnitTest.cpp \
168 BoxUnitTest.hpp
169BoxUnitTest_LDADD = ${ALLLIBS}
170
171CountBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
172 CountBondsUnitTest.cpp \
173 CountBondsUnitTest.hpp
174CountBondsUnitTest_LDADD = ${ALLLIBS}
175
176FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
177 FormulaUnitTest.cpp \
178 FormulaUnitTest.hpp
179FormulaUnittest_LDADD = ${ALLLIBS}
180
181LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
182 LinkedCellUnitTest.cpp \
183 LinkedCellUnitTest.hpp
184LinkedCellUnitTest_LDADD = ${ALLLIBS}
185
186ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
187 ListOfBondsUnitTest.cpp \
188 ListOfBondsUnitTest.hpp
189ListOfBondsUnitTest_LDADD = ${ALLLIBS}
190
191PeriodentafelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
192 PeriodentafelUnitTest.cpp \
193 PeriodentafelUnitTest.hpp
194PeriodentafelUnitTest_LDADD = ${ALLLIBS}
195
196SubspaceFactorizerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
197 SubspaceFactorizerUnitTest.cpp \
198 SubspaceFactorizerUnitTest.hpp
199SubspaceFactorizerUnitTest_LDADD = ${GSLLIBS}
200
201TesselationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
202 TesselationUnitTest.cpp \
203 TesselationUnitTest.hpp
204TesselationUnitTest_LDADD = ${ALLLIBS}
205
206Tesselation_BoundaryTriangleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
207 Tesselation_BoundaryTriangleUnitTest.cpp \
208 Tesselation_BoundaryTriangleUnitTest.hpp
209Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
210
211Tesselation_InOutsideUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
212 Tesselation_InsideOutsideUnitTest.cpp \
213 Tesselation_InsideOutsideUnitTest.hpp
214Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
215
216WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
217 WorldTimeUnitTest.cpp \
218 WorldTimeUnitTest.hpp \
219 ../WorldTime.cpp \
220 ../WorldTime.hpp
221WorldTimeUnitTest_LDADD = ${BOOST_LIB}
222
223
224TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
225TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
226
227#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.