source: src/unittests/Makefile.am@ f89024

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

Moved LineUnittest to LinearAlgebra/unittests/LineUnitTest.

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