source: src/unittests/Makefile.am@ a564be

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

Removed ancient StackClass, replaced by std::deque.

  • all PopLast replaced by pop_front.
  • all PopFirst replaced by pop_front.
  • and we have two remove items in two steps, first get item, then pop.
  • Property mode set to 100644
File size: 9.6 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)
8AM_CPPFLAGS = ${BOOST_CPPFLAGS}
9
10TESTS = \
11 ActionSequenceTest \
12 ActOnAllUnitTest \
13 AnalysisBondsUnitTests \
14 AnalysisCorrelationToPointUnitTest \
15 AnalysisCorrelationToSurfaceUnitTest \
16 AnalysisPairCorrelationUnitTest \
17 atomsCalculationTest \
18 AtomDescriptorTest \
19 BondGraphUnitTest \
20 BoxUnittest \
21 CacheableTest \
22 CountBondsUnitTest \
23 FormulaUnittest \
24 InfoUnitTest \
25 LinearSystemOfEquationsUnitTest \
26 LineUnittest \
27 LinkedCellUnitTest \
28 ListOfBondsUnitTest \
29 LogUnitTest \
30 manipulateAtomsTest \
31 MatrixContentSymmetricUnitTest \
32 MatrixContentUnitTest \
33 MatrixUnittest \
34 MenuDescriptionUnitTest \
35 MoleculeDescriptorTest \
36 ObserverTest \
37 ParserCommonUnitTest \
38 ParserTremoloUnitTest \
39 periodentafelTest \
40 PlaneUnittest \
41 Registry \
42 ShapeUnittest \
43 SingletonTest \
44 SubspaceFactorizerUnitTest \
45 TesselationUnitTest \
46 Tesselation_BoundaryTriangleUnitTest \
47 Tesselation_InOutsideUnitTest \
48 VectorContentUnitTest \
49 VectorUnitTest
50
51
52check_PROGRAMS = $(TESTS)
53noinst_PROGRAMS = $(TESTS) TestRunner
54
55BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
56GSLLIBS = \
57 ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
58 ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
59 ../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
60 $(BOOST_LIB)
61ALLLIBS = \
62 ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
63 ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
64 ${PARSERLIBS} \
65 ../libMolecuilder-@MOLECUILDER_API_VERSION@.la \
66 ${GSLLIBS}
67
68PARSERLIBS = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
69UILIBS = ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la
70
71TESTSOURCES = \
72 ActOnAllUnitTest.cpp \
73 ActionSequenceTest.cpp \
74 analysisbondsunittest.cpp \
75 AnalysisCorrelationToPointUnitTest.cpp \
76 AnalysisCorrelationToSurfaceUnitTest.cpp \
77 AnalysisPairCorrelationUnitTest.cpp \
78 AtomDescriptorTest.cpp \
79 atomsCalculationTest.cpp \
80 bondgraphunittest.cpp \
81 BoxUnittest.cpp \
82 CacheableTest.cpp \
83 CountBondsUnitTest.cpp \
84 FormulaUnittest.cpp \
85 infounittest.cpp \
86 linearsystemofequationsunittest.cpp \
87 LineUnittest.cpp \
88 LinkedCellUnitTest.cpp \
89 listofbondsunittest.cpp \
90 logunittest.cpp \
91 MatrixContentSymmetricUnittest.cpp \
92 MatrixContentUnittest.cpp \
93 MatrixUnittest.cpp \
94 manipulateAtomsTest.cpp \
95 MenuDescriptionUnitTest.cpp \
96 MoleculeDescriptorTest.cpp \
97 ObserverTest.cpp \
98 ParserCommonUnitTest.cpp \
99 ParserTremoloUnitTest.cpp \
100 periodentafelTest.cpp \
101 PlaneUnittest.cpp \
102 RegistryUnitTest.cpp \
103 ShapeUnittest.cpp \
104 SingletonTest.cpp \
105 tesselationunittest.cpp \
106 tesselation_boundarytriangleunittest.cpp \
107 tesselation_insideoutsideunittest.cpp \
108 VectorContentUnittest.cpp \
109 vectorunittest.cpp
110
111TESTHEADERS = \
112 ActOnAllUnitTest.hpp \
113 ActionSequenceTest.hpp \
114 analysisbondsunittest.hpp \
115 AnalysisCorrelationToPointUnitTest.hpp \
116 AnalysisCorrelationToSurfaceUnitTest.hpp \
117 AnalysisPairCorrelationUnitTest.hpp \
118 AtomDescriptorTest.hpp \
119 atomsCalculationTest.hpp \
120 bondgraphunittest.hpp \
121 BoxUnittest.hpp \
122 CacheableTest.hpp \
123 CountBondsUnitTest.hpp \
124 FormulaUnittest.hpp \
125 infounittest.hpp \
126 linearsystemofequationsunittest.hpp \
127 LineUnittest.hpp \
128 LinkedCellUnitTest.hpp \
129 listofbondsunittest.hpp \
130 logunittest.hpp \
131 manipulateAtomsTest.hpp \
132 MatrixContentSymmetricUnittest.hpp \
133 MatrixContentUnittest.hpp \
134 MatrixUnittest.hpp \
135 MenuDescriptionUnitTest.hpp \
136 MoleculeDescriptorTest.hpp \
137 ObserverTest.hpp \
138 periodentafelTest.hpp \
139 ParserCommonUnitTest.hpp \
140 ParserTremoloUnitTest.hpp \
141 PlaneUnittest.hpp \
142 RegistryUnitTest.hpp \
143 SingletonTest.hpp \
144 tesselationunittest.hpp \
145 tesselation_boundarytriangleunittest.hpp \
146 tesselation_insideoutsideunittest.hpp \
147 VectorContentUnittest.hpp \
148 vectorunittest.hpp
149
150
151ActionSequenceTest_SOURCES = UnitTestMain.cpp ActionSequenceTest.cpp ActionSequenceTest.hpp
152ActionSequenceTest_LDADD = ${UILIBS} ${ALLLIBS}
153
154ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
155ActOnAllUnitTest_LDADD = ${ALLLIBS}
156
157AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
158AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
159
160AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
161AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
162
163AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
164AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
165
166AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
167AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
168
169atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
170atomsCalculationTest_LDADD = ${ALLLIBS}
171
172AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
173AtomDescriptorTest_LDADD = ${ALLLIBS}
174
175BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
176BondGraphUnitTest_LDADD = ${ALLLIBS}
177
178BoxUnittest_SOURCES = UnitTestMain.cpp BoxUnittest.cpp BoxUnittest.hpp
179BoxUnittest_LDADD = ${ALLLIBS}
180
181CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
182CacheableTest_LDADD = ${ALLLIBS}
183
184CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
185CountBondsUnitTest_LDADD = ${ALLLIBS}
186
187FormulaUnittest_SOURCES = UnitTestMain.cpp FormulaUnittest.cpp FormulaUnittest.hpp
188FormulaUnittest_LDADD = ${ALLLIBS}
189
190MatrixContentSymmetricUnitTest_SOURCES = UnitTestMain.cpp MatrixContentSymmetricUnittest.cpp MatrixContentSymmetricUnittest
191MatrixContentSymmetricUnitTest_LDADD = ${ALLLIBS}
192
193MatrixContentUnitTest_SOURCES = UnitTestMain.cpp MatrixContentUnittest.cpp MatrixContentUnittest.hpp
194MatrixContentUnitTest_LDADD = ${ALLLIBS}
195
196InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
197InfoUnitTest_LDADD = ${ALLLIBS}
198
199LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
200LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
201
202LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
203LineUnittest_LDADD = ${ALLLIBS}
204
205LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
206LinkedCellUnitTest_LDADD = ${ALLLIBS}
207
208ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
209ListOfBondsUnitTest_LDADD = ${ALLLIBS}
210
211LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
212LogUnitTest_LDADD = ${ALLLIBS}
213
214manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
215manipulateAtomsTest_LDADD = ${UILIBS} ${ALLLIBS}
216
217MatrixUnittest_SOURCES = UnitTestMain.cpp MatrixUnittest.cpp MatrixUnittest.hpp
218MatrixUnittest_LDADD = ${ALLLIBS}
219
220MenuDescriptionUnitTest_SOURCES = UnitTestMain.cpp MenuDescriptionUnitTest.cpp MenuDescriptionUnitTest.hpp
221MenuDescriptionUnitTest_LDADD = ${ALLLIBS}
222
223MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
224MoleculeDescriptorTest_LDADD = ${ALLLIBS}
225
226ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
227ObserverTest_LDADD = ${ALLLIBS}
228
229ParserCommonUnitTest_SOURCES = UnitTestMain.cpp ParserCommonUnitTest.cpp ParserCommonUnitTest.hpp
230ParserCommonUnitTest_LDADD = ${ALLLIBS}
231
232ParserTremoloUnitTest_SOURCES = UnitTestMain.cpp ParserTremoloUnitTest.cpp ParserTremoloUnitTest.hpp
233ParserTremoloUnitTest_LDADD = ${ALLLIBS}
234
235periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
236periodentafelTest_LDADD = ${ALLLIBS}
237
238PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
239PlaneUnittest_LDADD = ${ALLLIBS}
240
241Registry_SOURCES = UnitTestMain.cpp RegistryUnitTest.cpp RegistryUnitTest.hpp
242Registry_LDADD = ${ALLLIBS}
243
244ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp
245ShapeUnittest_LDADD = ${ALLLIBS}
246
247SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp
248SingletonTest_LDADD = ${ALLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
249
250SubspaceFactorizerUnitTest_SOURCES = UnitTestMain.cpp SubspaceFactorizerUnittest.cpp SubspaceFactorizerUnittest.hpp
251SubspaceFactorizerUnitTest_LDADD = ${GSLLIBS}
252
253TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
254TesselationUnitTest_LDADD = ${ALLLIBS}
255
256Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
257Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
258
259Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
260Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
261
262TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
263TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
264
265VectorContentUnitTest_SOURCES = UnitTestMain.cpp VectorContentUnittest.cpp VectorContentUnittest.hpp
266VectorContentUnitTest_LDADD = ${ALLLIBS}
267
268VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
269VectorUnitTest_LDADD = ${ALLLIBS}
270
271#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.