source: src/unittests/Makefile.am@ dfafe7

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

Moved VectorContentUnittest and vectorunittest to LinearAlgebra/unittests/VectorContentUnitTest and ../VectorUnitTest.

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