source: src/unittests/Makefile.am@ 0e2031

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 Candidate_v1.7.0 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 0e2031 was 0e2031, checked in by Frederik Heber <heber@…>, 15 years ago

Moved MenuDescriptionUnitTest to UIElements/Menu/unittests.

  • Property mode set to 100644
File size: 8.4 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 ../Helpers/unittests \
8 ../LinearAlgebra/unittests \
9 ../Patterns/unittests \
10 ../UIElements/Menu/unittests
11
12INCLUDES = -I$(top_srcdir)/src
13
14AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
15AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
16AM_CPPFLAGS = ${BOOST_CPPFLAGS}
17
18TESTS = \
19 AnalysisBondsUnitTests \
20 AnalysisCorrelationToPointUnitTest \
21 AnalysisCorrelationToSurfaceUnitTest \
22 AnalysisPairCorrelationUnitTest \
23 BondGraphUnitTest \
24 BoxUnittest \
25 CountBondsUnitTest \
26 FormulaUnittest \
27 LineUnittest \
28 LinkedCellUnitTest \
29 ListOfBondsUnitTest \
30 MoleculeDescriptorTest \
31 ObserverTest \
32 ParserCommonUnitTest \
33 ParserTremoloUnitTest \
34 periodentafelTest \
35 PlaneUnittest \
36 Registry \
37 ShapeUnittest \
38 SubspaceFactorizerUnitTest \
39 TesselationUnitTest \
40 Tesselation_BoundaryTriangleUnitTest \
41 Tesselation_InOutsideUnitTest \
42 VectorContentUnitTest \
43 VectorUnitTest
44
45
46check_PROGRAMS = $(TESTS)
47noinst_PROGRAMS = $(TESTS) TestRunner
48
49BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
50GSLLIBS = \
51 ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
52 ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
53 ../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
54 $(BOOST_LIB)
55ALLLIBS = \
56 ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
57 ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
58 ${PARSERLIBS} \
59 ../libMolecuilder-@MOLECUILDER_API_VERSION@.la \
60 ${GSLLIBS}
61
62PARSERLIBS = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
63UILIBS = ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la
64
65TESTSOURCES = \
66 ../Actions/unittests/ActionRegistryUnitTest.cpp \
67 ../Actions/unittests/ActionSequenceUnitTest.cpp \
68 analysisbondsunittest.cpp \
69 AnalysisCorrelationToPointUnitTest.cpp \
70 AnalysisCorrelationToSurfaceUnitTest.cpp \
71 AnalysisPairCorrelationUnitTest.cpp \
72 ../Descriptors/unittests/AtomDescriptorUnitTest.cpp \
73 ../Actions/unittests/AtomsCalculationUnitTest.cpp \
74 bondgraphunittest.cpp \
75 BoxUnittest.cpp \
76 ../Patterns/unittests/CacheableUnitTest.cpp \
77 CountBondsUnitTest.cpp \
78 FormulaUnittest.cpp \
79 ../Helpers/unittests/InfoUnitTest.cpp \
80 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.cpp \
81 LineUnittest.cpp \
82 LinkedCellUnitTest.cpp \
83 listofbondsunittest.cpp \
84 ../Helpers/unittests/LogUnitTest.cpp \
85 ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
86 ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.cpp \
87 ../LinearAlgebra/unittests/MatrixContentUnitTest.cpp \
88 ../LinearAlgebra/unittests/MatrixUnitTest.cpp \
89 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.cpp \
90 MoleculeDescriptorTest.cpp \
91 ObserverTest.cpp \
92 ParserCommonUnitTest.cpp \
93 ParserTremoloUnitTest.cpp \
94 periodentafelTest.cpp \
95 PlaneUnittest.cpp \
96 RegistryUnitTest.cpp \
97 ShapeUnittest.cpp \
98 ../Patterns/unittests/SingletonUnitTest.cpp \
99 tesselationunittest.cpp \
100 tesselation_boundarytriangleunittest.cpp \
101 tesselation_insideoutsideunittest.cpp \
102 VectorContentUnittest.cpp \
103 vectorunittest.cpp
104
105TESTHEADERS = \
106 ../Actions/unittests/ActionRegistryUnitTest.hpp \
107 ../Actions/unittests/ActionSequenceUnitTest.hpp \
108 analysisbondsunittest.hpp \
109 AnalysisCorrelationToPointUnitTest.hpp \
110 AnalysisCorrelationToSurfaceUnitTest.hpp \
111 AnalysisPairCorrelationUnitTest.hpp \
112 ../Descriptors/unittests/AtomDescriptorUnitTest.hpp \
113 ../Actions/unittests/AtomsCalculationUnitTest.hpp \
114 bondgraphunittest.hpp \
115 BoxUnittest.hpp \
116 ../Patterns/unittests/CacheableUnitTest.hpp \
117 CountBondsUnitTest.hpp \
118 FormulaUnittest.hpp \
119 ../Helpers/unittests/InfoUnitTest.hpp \
120 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.hpp \
121 LineUnittest.hpp \
122 LinkedCellUnitTest.hpp \
123 listofbondsunittest.hpp \
124 ../Helpers/unittests/LogUnitTest.hpp \
125 ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
126 ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.hpp \
127 ../LinearAlgebra/unittests/MatrixContentUnitTest.hpp \
128 ../LinearAlgebra/unittests/MatrixUnitTest.hpp \
129 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp \
130 MoleculeDescriptorTest.hpp \
131 ObserverTest.hpp \
132 periodentafelTest.hpp \
133 ParserCommonUnitTest.hpp \
134 ParserTremoloUnitTest.hpp \
135 PlaneUnittest.hpp \
136 RegistryUnitTest.hpp \
137 ShapeUnittest.hpp \
138 ../Patterns/unittests/SingletonUnitTest.hpp \
139 stackclassunittest.hpp \
140 tesselationunittest.hpp \
141 tesselation_boundarytriangleunittest.hpp \
142 tesselation_insideoutsideunittest.hpp \
143 VectorContentUnittest.hpp \
144 vectorunittest.hpp
145
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
159BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
160BondGraphUnitTest_LDADD = ${ALLLIBS}
161
162BoxUnittest_SOURCES = UnitTestMain.cpp BoxUnittest.cpp BoxUnittest.hpp
163BoxUnittest_LDADD = ${ALLLIBS}
164
165CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
166CountBondsUnitTest_LDADD = ${ALLLIBS}
167
168FormulaUnittest_SOURCES = UnitTestMain.cpp FormulaUnittest.cpp FormulaUnittest.hpp
169FormulaUnittest_LDADD = ${ALLLIBS}
170
171LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
172LineUnittest_LDADD = ${ALLLIBS}
173
174LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
175LinkedCellUnitTest_LDADD = ${ALLLIBS}
176
177ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
178ListOfBondsUnitTest_LDADD = ${ALLLIBS}
179
180MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
181MoleculeDescriptorTest_LDADD = ${ALLLIBS}
182
183ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
184ObserverTest_LDADD = ${ALLLIBS}
185
186ParserCommonUnitTest_SOURCES = UnitTestMain.cpp ParserCommonUnitTest.cpp ParserCommonUnitTest.hpp
187ParserCommonUnitTest_LDADD = ${ALLLIBS}
188
189ParserTremoloUnitTest_SOURCES = UnitTestMain.cpp ParserTremoloUnitTest.cpp ParserTremoloUnitTest.hpp
190ParserTremoloUnitTest_LDADD = ${ALLLIBS}
191
192periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
193periodentafelTest_LDADD = ${ALLLIBS}
194
195PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
196PlaneUnittest_LDADD = ${ALLLIBS}
197
198Registry_SOURCES = UnitTestMain.cpp RegistryUnitTest.cpp RegistryUnitTest.hpp
199Registry_LDADD = ${ALLLIBS}
200
201ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp
202ShapeUnittest_LDADD = ${ALLLIBS}
203
204SubspaceFactorizerUnitTest_SOURCES = UnitTestMain.cpp SubspaceFactorizerUnittest.cpp SubspaceFactorizerUnittest.hpp
205SubspaceFactorizerUnitTest_LDADD = ${GSLLIBS}
206
207TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
208TesselationUnitTest_LDADD = ${ALLLIBS}
209
210Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
211Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
212
213Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
214Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
215
216TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
217TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
218
219VectorContentUnitTest_SOURCES = UnitTestMain.cpp VectorContentUnittest.cpp VectorContentUnittest.hpp
220VectorContentUnitTest_LDADD = ${ALLLIBS}
221
222VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
223VectorUnitTest_LDADD = ${ALLLIBS}
224
225#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.