source: src/unittests/Makefile.am@ 88b400

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

Merge branch 'SharedLibraries' into stable

  • BUGFIX: MemDebug.cpp in case of no MEMDEBUG defined, iosfwd include was missing.

Conflicts:

src/Actions/AnalysisAction/PointCorrelationAction.hpp
src/Actions/Makefile.am
src/Makefile.am
src/UIElements/Makefile.am
src/unittests/Makefile.am
src/unittests/ShapeUnittest.cpp

  • Property mode set to 100644
File size: 8.7 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 ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
59 ${PARSERLIBS} \
60 ../libMolecuilder-@MOLECUILDER_API_VERSION@.la \
61 ${GSLLIBS} \
62 ${BOOST_PROGRAM_OPTIONS_LIB}
63PARSERLIBS = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
64UILIBS = ../UIElements/libMolecuilderUI-@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 ParserUnitTest.hpp \
132 PlaneUnittest.hpp \
133 ObserverTest.hpp \
134 SingletonTest.hpp \
135 stackclassunittest.hpp \
136 tesselationunittest.hpp \
137 tesselation_boundarytriangleunittest.hpp \
138 tesselation_insideoutsideunittest.hpp \
139 vectorunittest.hpp
140
141
142ActionSequenceTest_SOURCES = UnitTestMain.cpp ActionSequenceTest.cpp ActionSequenceTest.hpp
143ActionSequenceTest_LDADD = ${UILIBS} ${ALLLIBS}
144
145ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
146ActOnAllUnitTest_LDADD = ${ALLLIBS}
147
148AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
149AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
150
151AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
152AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
153
154AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
155AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
156
157AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
158AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
159
160atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
161atomsCalculationTest_LDADD = ${ALLLIBS}
162
163AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
164AtomDescriptorTest_LDADD = ${ALLLIBS}
165
166BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
167BondGraphUnitTest_LDADD = ${ALLLIBS}
168
169BoxUnittest_SOURCES = UnitTestMain.cpp BoxUnittest.cpp BoxUnittest.hpp
170BoxUnittest_LDADD = ${ALLLIBS}
171
172CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
173CacheableTest_LDADD = ${ALLLIBS}
174
175CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
176CountBondsUnitTest_LDADD = ${ALLLIBS}
177
178FormulaUnittest_SOURCES = UnitTestMain.cpp FormulaUnittest.cpp FormulaUnittest.hpp
179FormulaUnittest_LDADD = ${ALLLIBS}
180
181GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
182GSLMatrixSymmetricUnitTest_LDADD = ${ALLLIBS}
183
184GSLMatrixUnitTest_SOURCES = UnitTestMain.cpp gslmatrixunittest.cpp gslmatrixunittest.hpp
185GSLMatrixUnitTest_LDADD = ${ALLLIBS}
186
187GSLVectorUnitTest_SOURCES = UnitTestMain.cpp gslvectorunittest.cpp gslvectorunittest.hpp
188GSLVectorUnitTest_LDADD = ${ALLLIBS}
189
190InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
191InfoUnitTest_LDADD = ${ALLLIBS}
192
193LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
194LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
195
196LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
197LineUnittest_LDADD = ${ALLLIBS}
198
199LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
200LinkedCellUnitTest_LDADD = ${ALLLIBS}
201
202ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
203ListOfBondsUnitTest_LDADD = ${ALLLIBS}
204
205LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
206LogUnitTest_LDADD = ${ALLLIBS}
207
208manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
209manipulateAtomsTest_LDADD = ${UILIBS} ${ALLLIBS}
210
211MatrixUnittest_SOURCES = UnitTestMain.cpp MatrixUnittest.cpp MatrixUnittest.hpp
212MatrixUnittest_LDADD = ${ALLLIBS}
213
214MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
215MoleculeDescriptorTest_LDADD = ${ALLLIBS}
216
217ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
218ObserverTest_LDADD = ${ALLLIBS}
219
220ParserUnitTest_SOURCES = UnitTestMain.cpp ParserUnitTest.cpp ParserUnitTest.hpp
221ParserUnitTest_LDADD = ${ALLLIBS}
222
223periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
224periodentafelTest_LDADD = ${ALLLIBS}
225
226PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
227PlaneUnittest_LDADD = ${ALLLIBS}
228
229ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp
230ShapeUnittest_LDADD = ${ALLLIBS}
231
232SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp
233SingletonTest_LDADD = ${ALLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
234
235StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp
236StackClassUnitTest_LDADD = ${ALLLIBS}
237
238TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
239TesselationUnitTest_LDADD = ${ALLLIBS}
240
241Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
242Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
243
244Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
245Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
246
247TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
248TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
249
250VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
251VectorUnitTest_LDADD = ${ALLLIBS}
252
253#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.