source: src/unittests/Makefile.am@ 952f38

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

created LibMolecuilderHelpers.

  • is shared
  • renamed log.[ch]pp -> Log.[ch]pp
  • renamed verbose.[ch]pp -> Verbose.[ch]pp
  • renamed info.[ch]pp -> Info.[ch]pp
  • contains: Assert, MemDebug, Log, logger, errorlogger, Verbose, Info
  • had to change includes practically everywhere.
  • Property mode set to 100644
File size: 9.8 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
51GSLLIBS = \
52 ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
53 ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
54 ../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
55 $(BOOST_LIB) \
56 ${BOOST_THREAD_LIB}
57ALLLIBS = \
58 ../UIElements/libMolecuilderUI.a \
59 ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
60 ${PARSERLIBS} \
61 ../libmolecuilder.a \
62 ${GSLLIBS} \
63 ${BOOST_PROGRAM_OPTIONS_LIB}
64PARSERLIBS = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
65
66TESTSOURCES = \
67 ActOnAllUnitTest.cpp \
68 ActionSequenceTest.cpp \
69 analysisbondsunittest.cpp \
70 AnalysisCorrelationToPointUnitTest.cpp \
71 AnalysisCorrelationToSurfaceUnitTest.cpp \
72 AnalysisPairCorrelationUnitTest.cpp \
73 AtomDescriptorTest.cpp \
74 atomsCalculationTest.cpp \
75 bondgraphunittest.cpp \
76 BoxUnittest.cpp \
77 CacheableTest.cpp \
78 CountBondsUnitTest.cpp \
79 FormulaUnittest.cpp \
80 gslmatrixsymmetricunittest.cpp \
81 gslmatrixunittest.cpp \
82 gslvectorunittest.cpp \
83 infounittest.cpp \
84 linearsystemofequationsunittest.cpp \
85 LineUnittest.cpp \
86 LinkedCellUnitTest.cpp \
87 listofbondsunittest.cpp \
88 logunittest.cpp \
89 MatrixUnittest.cpp \
90 manipulateAtomsTest.cpp \
91 MoleculeDescriptorTest.cpp \
92 ObserverTest.cpp \
93 ParserUnitTest.cpp \
94 periodentafelTest.cpp \
95 PlaneUnittest.cpp \
96 ShapeUnittest.cpp \
97 SingletonTest.cpp \
98 stackclassunittest.cpp \
99 tesselationunittest.cpp \
100 tesselation_boundarytriangleunittest.cpp \
101 tesselation_insideoutsideunittest.cpp \
102 vectorunittest.cpp
103
104TESTHEADERS = \
105 ActOnAllUnitTest.hpp \
106 ActionSequenceTest.hpp \
107 analysisbondsunittest.hpp \
108 AnalysisCorrelationToPointUnitTest.hpp \
109 AnalysisCorrelationToSurfaceUnitTest.hpp \
110 AnalysisPairCorrelationUnitTest.hpp \
111 AtomDescriptorTest.hpp \
112 atomsCalculationTest.hpp \
113 bondgraphunittest.hpp \
114 BoxUnittest.hpp \
115 CacheableTest.hpp \
116 CountBondsUnitTest.hpp \
117 FormulaUnittest.hpp \
118 gslmatrixsymmetricunittest.hpp \
119 gslmatrixunittest.hpp \
120 gslvectorunittest.hpp \
121 infounittest.hpp \
122 linearsystemofequationsunittest.hpp \
123 LineUnittest.hpp \
124 LinkedCellUnitTest.hpp \
125 listofbondsunittest.hpp \
126 logunittest.hpp \
127 manipulateAtomsTest.hpp \
128 MatrixUnittest.hpp \
129 MoleculeDescriptorTest.hpp \
130 periodentafelTest.hpp \
131 PlaneUnittest.hpp \
132 ObserverTest.hpp \
133 SingletonTest.hpp \
134 stackclassunittest.hpp \
135 tesselationunittest.hpp \
136 tesselation_boundarytriangleunittest.hpp \
137 tesselation_insideoutsideunittest.hpp \
138 vectorunittest.hpp
139
140
141ActionSequenceTest_SOURCES = UnitTestMain.cpp ActionSequenceTest.cpp ActionSequenceTest.hpp
142ActionSequenceTest_LDADD = ../UIElements/libMolecuilderUI.a ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la ../libmolecuilder.a ../libparser.a ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la ../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la $(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
143
144ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
145ActOnAllUnitTest_LDADD = ${ALLLIBS}
146
147AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
148AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
149
150AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
151AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
152
153AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
154AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
155
156AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
157AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
158
159atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
160atomsCalculationTest_LDADD = ${ALLLIBS}
161
162AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
163AtomDescriptorTest_LDADD = ${ALLLIBS}
164
165BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
166BondGraphUnitTest_LDADD = ${ALLLIBS}
167
168BoxUnittest_SOURCES = UnitTestMain.cpp BoxUnittest.cpp BoxUnittest.hpp
169BoxUnittest_LDADD = ${ALLLIBS}
170
171CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
172CacheableTest_LDADD = ${ALLLIBS}
173
174CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
175CountBondsUnitTest_LDADD = ${ALLLIBS}
176
177FormulaUnittest_SOURCES = UnitTestMain.cpp FormulaUnittest.cpp FormulaUnittest.hpp
178FormulaUnittest_LDADD = ${ALLLIBS}
179
180GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
181GSLMatrixSymmetricUnitTest_LDADD = ${ALLLIBS}
182
183GSLMatrixUnitTest_SOURCES = UnitTestMain.cpp gslmatrixunittest.cpp gslmatrixunittest.hpp
184GSLMatrixUnitTest_LDADD = ${ALLLIBS}
185
186GSLVectorUnitTest_SOURCES = UnitTestMain.cpp gslvectorunittest.cpp gslvectorunittest.hpp
187GSLVectorUnitTest_LDADD = ${ALLLIBS}
188
189InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
190InfoUnitTest_LDADD = ${ALLLIBS}
191
192LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
193LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
194
195LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
196LineUnittest_LDADD = ${ALLLIBS}
197
198LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
199LinkedCellUnitTest_LDADD = ${ALLLIBS}
200
201ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
202ListOfBondsUnitTest_LDADD = ${ALLLIBS}
203
204LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
205LogUnitTest_LDADD = ${ALLLIBS}
206
207manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
208manipulateAtomsTest_LDADD = ../UIElements/libMolecuilderUI.a ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la ../libmolecuilder.a ../libparser.a ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la ../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la $(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
209
210MatrixUnittest_SOURCES = UnitTestMain.cpp MatrixUnittest.cpp MatrixUnittest.hpp
211MatrixUnittest_LDADD = ${ALLLIBS}
212
213MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
214MoleculeDescriptorTest_LDADD = ${ALLLIBS}
215
216ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
217ObserverTest_LDADD = ${ALLLIBS}
218
219ParserUnitTest_SOURCES = UnitTestMain.cpp ParserUnitTest.cpp ParserUnitTest.hpp
220ParserUnitTest_LDADD = ${ALLLIBS}
221
222periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
223periodentafelTest_LDADD = ${ALLLIBS}
224
225PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
226PlaneUnittest_LDADD = ${ALLLIBS}
227
228ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp
229ShapeUnittest_LDADD = ${ALLLIBS}
230
231SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp
232SingletonTest_LDADD = ${ALLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
233
234StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp
235StackClassUnitTest_LDADD = ${ALLLIBS}
236
237TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
238TesselationUnitTest_LDADD = ${ALLLIBS}
239
240Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
241Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
242
243Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
244Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
245
246TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
247TestRunner_LDADD = ../UIElements/libMolecuilderUI.a ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la ../libmolecuilder.a ../libparser.a ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la ../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la$(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
248
249VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
250VectorUnitTest_LDADD = ${ALLLIBS}
251
252#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.