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

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

Moved ShapeUnittest to Shapes/unittests/ShapeUnitTest.

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