source: src/unittests/Makefile.am@ e4decc

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

Changed a bit the sequence of adding BOOST_LIBs.

  • Property mode set to 100644
File size: 8.9 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4INCLUDES = -I$(top_srcdir)/src
5
6AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
7AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
8
9TESTS = \
10 ActionSequenceTest \
11 ActOnAllUnitTest \
12 AnalysisBondsUnitTests \
13 AnalysisCorrelationToPointUnitTest \
14 AnalysisCorrelationToSurfaceUnitTest \
15 AnalysisPairCorrelationUnitTest \
16 atomsCalculationTest \
17 AtomDescriptorTest \
18 BondGraphUnitTest \
19 BoxUnittest \
20 CacheableTest \
21 CountBondsUnitTest \
22 FormulaUnittest \
23 GSLMatrixSymmetricUnitTest \
24 GSLMatrixUnitTest \
25 GSLVectorUnitTest \
26 InfoUnitTest \
27 LinearSystemOfEquationsUnitTest \
28 LineUnittest \
29 LinkedCellUnitTest \
30 ListOfBondsUnitTest \
31 LogUnitTest \
32 manipulateAtomsTest \
33 MatrixUnittest \
34 MoleculeDescriptorTest \
35 ObserverTest \
36 ParserUnitTest \
37 periodentafelTest \
38 PlaneUnittest \
39 ShapeUnittest \
40 SingletonTest \
41 StackClassUnitTest \
42 TesselationUnitTest \
43 Tesselation_BoundaryTriangleUnitTest \
44 Tesselation_InOutsideUnitTest \
45 VectorUnitTest
46
47
48check_PROGRAMS = $(TESTS)
49noinst_PROGRAMS = $(TESTS) TestRunner
50
51BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_THREAD_LIB)
52GSLLIBS = \
53 ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
54 ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
55 ../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
56 $(BOOST_LIB)
57ALLLIBS = \
58 ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
59 ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
60 ${PARSERLIBS} \
61 ../libMolecuilder-@MOLECUILDER_API_VERSION@.la \
62 ${GSLLIBS}
63
64PARSERLIBS = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
65UILIBS = ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la
66
67TESTSOURCES = \
68 ActOnAllUnitTest.cpp \
69 ActionSequenceTest.cpp \
70 analysisbondsunittest.cpp \
71 AnalysisCorrelationToPointUnitTest.cpp \
72 AnalysisCorrelationToSurfaceUnitTest.cpp \
73 AnalysisPairCorrelationUnitTest.cpp \
74 AtomDescriptorTest.cpp \
75 atomsCalculationTest.cpp \
76 bondgraphunittest.cpp \
77 BoxUnittest.cpp \
78 CacheableTest.cpp \
79 CountBondsUnitTest.cpp \
80 FormulaUnittest.cpp \
81 gslmatrixsymmetricunittest.cpp \
82 gslmatrixunittest.cpp \
83 gslvectorunittest.cpp \
84 infounittest.cpp \
85 linearsystemofequationsunittest.cpp \
86 LineUnittest.cpp \
87 LinkedCellUnitTest.cpp \
88 listofbondsunittest.cpp \
89 logunittest.cpp \
90 MatrixUnittest.cpp \
91 manipulateAtomsTest.cpp \
92 MoleculeDescriptorTest.cpp \
93 ObserverTest.cpp \
94 ParserUnitTest.cpp \
95 periodentafelTest.cpp \
96 PlaneUnittest.cpp \
97 ShapeUnittest.cpp \
98 SingletonTest.cpp \
99 stackclassunittest.cpp \
100 tesselationunittest.cpp \
101 tesselation_boundarytriangleunittest.cpp \
102 tesselation_insideoutsideunittest.cpp \
103 vectorunittest.cpp
104
105TESTHEADERS = \
106 ActOnAllUnitTest.hpp \
107 ActionSequenceTest.hpp \
108 analysisbondsunittest.hpp \
109 AnalysisCorrelationToPointUnitTest.hpp \
110 AnalysisCorrelationToSurfaceUnitTest.hpp \
111 AnalysisPairCorrelationUnitTest.hpp \
112 AtomDescriptorTest.hpp \
113 atomsCalculationTest.hpp \
114 bondgraphunittest.hpp \
115 BoxUnittest.hpp \
116 CacheableTest.hpp \
117 CountBondsUnitTest.hpp \
118 FormulaUnittest.hpp \
119 gslmatrixsymmetricunittest.hpp \
120 gslmatrixunittest.hpp \
121 gslvectorunittest.hpp \
122 infounittest.hpp \
123 linearsystemofequationsunittest.hpp \
124 LineUnittest.hpp \
125 LinkedCellUnitTest.hpp \
126 listofbondsunittest.hpp \
127 logunittest.hpp \
128 manipulateAtomsTest.hpp \
129 MatrixUnittest.hpp \
130 MoleculeDescriptorTest.hpp \
131 periodentafelTest.hpp \
132 ParserUnitTest.hpp \
133 PlaneUnittest.hpp \
134 ObserverTest.hpp \
135 SingletonTest.hpp \
136 stackclassunittest.hpp \
137 tesselationunittest.hpp \
138 tesselation_boundarytriangleunittest.hpp \
139 tesselation_insideoutsideunittest.hpp \
140 vectorunittest.hpp
141
142
143ActionSequenceTest_SOURCES = UnitTestMain.cpp ActionSequenceTest.cpp ActionSequenceTest.hpp
144ActionSequenceTest_LDADD = ${UILIBS} ${ALLLIBS}
145
146ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
147ActOnAllUnitTest_LDADD = ${ALLLIBS}
148
149AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
150AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
151
152AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
153AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
154
155AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
156AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
157
158AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
159AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
160
161atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
162atomsCalculationTest_LDADD = ${ALLLIBS}
163
164AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
165AtomDescriptorTest_LDADD = ${ALLLIBS}
166
167BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
168BondGraphUnitTest_LDADD = ${ALLLIBS}
169
170BoxUnittest_SOURCES = UnitTestMain.cpp BoxUnittest.cpp BoxUnittest.hpp
171BoxUnittest_LDADD = ${ALLLIBS}
172
173CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
174CacheableTest_LDADD = ${ALLLIBS}
175
176CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
177CountBondsUnitTest_LDADD = ${ALLLIBS}
178
179FormulaUnittest_SOURCES = UnitTestMain.cpp FormulaUnittest.cpp FormulaUnittest.hpp
180FormulaUnittest_LDADD = ${ALLLIBS}
181
182GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
183GSLMatrixSymmetricUnitTest_LDADD = ${ALLLIBS}
184
185GSLMatrixUnitTest_SOURCES = UnitTestMain.cpp gslmatrixunittest.cpp gslmatrixunittest.hpp
186GSLMatrixUnitTest_LDADD = ${ALLLIBS}
187
188GSLVectorUnitTest_SOURCES = UnitTestMain.cpp gslvectorunittest.cpp gslvectorunittest.hpp
189GSLVectorUnitTest_LDADD = ${ALLLIBS}
190
191InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
192InfoUnitTest_LDADD = ${ALLLIBS}
193
194LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
195LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
196
197LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
198LineUnittest_LDADD = ${ALLLIBS}
199
200LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
201LinkedCellUnitTest_LDADD = ${ALLLIBS}
202
203ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
204ListOfBondsUnitTest_LDADD = ${ALLLIBS}
205
206LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
207LogUnitTest_LDADD = ${ALLLIBS}
208
209manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
210manipulateAtomsTest_LDADD = ${UILIBS} ${ALLLIBS}
211
212MatrixUnittest_SOURCES = UnitTestMain.cpp MatrixUnittest.cpp MatrixUnittest.hpp
213MatrixUnittest_LDADD = ${ALLLIBS}
214
215MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
216MoleculeDescriptorTest_LDADD = ${ALLLIBS}
217
218ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
219ObserverTest_LDADD = ${ALLLIBS}
220
221ParserUnitTest_SOURCES = UnitTestMain.cpp ParserUnitTest.cpp ParserUnitTest.hpp
222ParserUnitTest_LDADD = ${ALLLIBS}
223
224periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
225periodentafelTest_LDADD = ${ALLLIBS}
226
227PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
228PlaneUnittest_LDADD = ${ALLLIBS}
229
230ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp
231ShapeUnittest_LDADD = ${ALLLIBS}
232
233SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp
234SingletonTest_LDADD = ${ALLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
235
236StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp
237StackClassUnitTest_LDADD = ${ALLLIBS}
238
239TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
240TesselationUnitTest_LDADD = ${ALLLIBS}
241
242Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
243Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
244
245Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
246Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
247
248TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
249TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
250
251VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
252VectorUnitTest_LDADD = ${ALLLIBS}
253
254#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.