source: src/unittests/Makefile.am@ 57d976

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

Moved RegistryUnitTest to Patterns/unittests/RegistryUnitTest.

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