source: src/unittests/Makefile.am@ f649de

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

Implemented class WorldTime.

  • WorldTime contains the current, globally valid time step, e.g. to show within the gui ...
  • Property mode set to 100644
File size: 7.8 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 ../LinearAlgebra/unittests \
8 ../Parser/unittests \
9 ../RandomNumbers/unittests \
10 ../Shapes/unittests \
11 ../UIElements/Menu/unittests
12
13INCLUDES = -I$(top_srcdir)/src
14
15AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
16AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
17
18TESTS = \
19 AnalysisBondsUnitTest \
20 AnalysisCorrelationToPointUnitTest \
21 AnalysisCorrelationToSurfaceUnitTest \
22 AnalysisPairCorrelationUnitTest \
23 BondGraphUnitTest \
24 BoxUnitTest \
25 CountBondsUnitTest \
26 FormulaUnittest \
27 LinkedCellUnitTest \
28 ListOfBondsUnitTest \
29 PeriodentafelUnitTest \
30 SubspaceFactorizerUnitTest \
31 TesselationUnitTest \
32 Tesselation_BoundaryTriangleUnitTest \
33 Tesselation_InOutsideUnitTest \
34 WorldTimeUnitTest
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 ../Shapes/libMolecuilderShapes.la \
43 ../LinearAlgebra/libMolecuilderLinearAlgebra.la \
44 ../Exceptions/libMolecuilderExceptions.la \
45 ../RandomNumbers/libMolecuilderRandomNumbers.la \
46 $(BOOST_LIB)
47ALLLIBS = \
48 ../UIElements/libMolecuilderUI.la \
49 ../Actions/libMolecuilderActions.la \
50 ${PARSERLIBS} \
51 ../libMolecuilder.la \
52 ${GSLLIBS}
53
54PARSERLIBS = ../Parser/libMolecuilderParser.la
55UILIBS = ../UIElements/libMolecuilderUI.la
56
57TESTSOURCES = \
58 ../Actions/unittests/ActionRegistryUnitTest.cpp \
59 ../Actions/unittests/ActionSequenceUnitTest.cpp \
60 AnalysisBondsUnitTest.cpp \
61 AnalysisCorrelationToPointUnitTest.cpp \
62 AnalysisCorrelationToSurfaceUnitTest.cpp \
63 AnalysisPairCorrelationUnitTest.cpp \
64 ../Descriptors/unittests/AtomDescriptorUnitTest.cpp \
65 ../Actions/unittests/AtomsCalculationUnitTest.cpp \
66 BondGraphUnitTest.cpp \
67 BoxUnitTest.cpp \
68 CountBondsUnitTest.cpp \
69 FormulaUnitTest.cpp \
70 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.cpp \
71 ../LinearAlgebra/unittests/LineUnitTest.cpp \
72 LinkedCellUnitTest.cpp \
73 ListOfBondsUnitTest.cpp \
74 ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
75 ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.cpp \
76 ../LinearAlgebra/unittests/MatrixContentUnitTest.cpp \
77 ../LinearAlgebra/unittests/MatrixUnitTest.cpp \
78 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.cpp \
79 ../Descriptors/unittests/MoleculeDescriptorUnitTest.cpp \
80 ../Parser/unittests/ParserMpqcUnitTest.cpp \
81 ../Parser/unittests/ParserPcpUnitTest.cpp \
82 ../Parser/unittests/ParserPdbUnitTest.cpp \
83 ../Parser/unittests/ParserTremoloUnitTest.cpp \
84 ../Parser/unittests/ParserXyzUnitTest.cpp \
85 PeriodentafelUnitTest.cpp \
86 ../LinearAlgebra/unittests/PlaneUnitTest.cpp \
87 ../Shapes/unittests/ShapeUnitTest.cpp \
88 TesselationUnitTest.cpp \
89 Tesselation_BoundaryTriangleUnitTest.cpp \
90 Tesselation_InsideOutsideUnitTest.cpp \
91 ../LinearAlgebra/unittests/VectorContentUnitTest.cpp \
92 ../LinearAlgebra/unittests/VectorUnitTest.cpp \
93 WorldTimeUnitTest.cpp
94
95TESTHEADERS = \
96 ../Actions/unittests/ActionRegistryUnitTest.hpp \
97 ../Actions/unittests/ActionSequenceUnitTest.hpp \
98 AnalysisBondsUnitTest.hpp \
99 AnalysisCorrelationToPointUnitTest.hpp \
100 AnalysisCorrelationToSurfaceUnitTest.hpp \
101 AnalysisPairCorrelationUnitTest.hpp \
102 ../Descriptors/unittests/AtomDescriptorUnitTest.hpp \
103 ../Actions/unittests/AtomsCalculationUnitTest.hpp \
104 BondGraphUnitTest.hpp \
105 BoxUnitTest.hpp \
106 CountBondsUnitTest.hpp \
107 FormulaUnitTest.hpp \
108 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.hpp \
109 ../LinearAlgebra/unittests/LineUnitTest.hpp \
110 LinkedCellUnitTest.hpp \
111 ListOfBondsUnitTest.hpp \
112 ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
113 ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.hpp \
114 ../LinearAlgebra/unittests/MatrixContentUnitTest.hpp \
115 ../LinearAlgebra/unittests/MatrixUnitTest.hpp \
116 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp \
117 ../Descriptors/unittests/MoleculeDescriptorUnitTest.hpp \
118 ../Parser/unittests/ParserMpqcUnitTest.hpp \
119 ../Parser/unittests/ParserPcpUnitTest.hpp \
120 ../Parser/unittests/ParserPdbUnitTest.hpp \
121 ../Parser/unittests/ParserTremoloUnitTest.hpp \
122 ../Parser/unittests/ParserXyzUnitTest.hpp \
123 PeriodentafelUnitTest.hpp \
124 ../LinearAlgebra/unittests/PlaneUnitTest.hpp \
125 ../Shapes/unittests/ShapeUnitTest.hpp \
126 TesselationUnitTest.hpp \
127 Tesselation_BoundaryTriangleUnitTest.hpp \
128 Tesselation_InsideOutsideUnitTest.hpp \
129 ../LinearAlgebra/unittests/VectorContentUnitTest.hpp \
130 ../LinearAlgebra/unittests/VectorUnitTest.hpp \
131 WorldTimeUnitTest.hpp
132
133
134AnalysisBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
135 AnalysisBondsUnitTest.cpp \
136 AnalysisBondsUnitTest.hpp
137AnalysisBondsUnitTest_LDADD = ${ALLLIBS}
138
139AnalysisCorrelationToPointUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
140 analysis_correlation.hpp \
141 AnalysisCorrelationToPointUnitTest.cpp \
142 AnalysisCorrelationToPointUnitTest.hpp
143AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
144
145AnalysisCorrelationToSurfaceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
146 analysis_correlation.hpp \
147 AnalysisCorrelationToSurfaceUnitTest.cpp \
148 AnalysisCorrelationToSurfaceUnitTest.hpp
149AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
150
151AnalysisPairCorrelationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
152 analysis_correlation.hpp \
153 AnalysisPairCorrelationUnitTest.cpp \
154 AnalysisPairCorrelationUnitTest.hpp
155AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
156
157BondGraphUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
158 BondGraphUnitTest.cpp \
159 BondGraphUnitTest.hpp
160BondGraphUnitTest_LDADD = ${ALLLIBS}
161
162BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
163 BoxUnitTest.cpp \
164 BoxUnitTest.hpp
165BoxUnitTest_LDADD = ${ALLLIBS}
166
167CountBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
168 CountBondsUnitTest.cpp \
169 CountBondsUnitTest.hpp
170CountBondsUnitTest_LDADD = ${ALLLIBS}
171
172FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
173 FormulaUnitTest.cpp \
174 FormulaUnitTest.hpp
175FormulaUnittest_LDADD = ${ALLLIBS}
176
177LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
178 LinkedCellUnitTest.cpp \
179 LinkedCellUnitTest.hpp
180LinkedCellUnitTest_LDADD = ${ALLLIBS}
181
182ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
183 ListOfBondsUnitTest.cpp \
184 ListOfBondsUnitTest.hpp
185ListOfBondsUnitTest_LDADD = ${ALLLIBS}
186
187PeriodentafelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
188 PeriodentafelUnitTest.cpp \
189 PeriodentafelUnitTest.hpp
190PeriodentafelUnitTest_LDADD = ${ALLLIBS}
191
192SubspaceFactorizerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
193 SubspaceFactorizerUnitTest.cpp \
194 SubspaceFactorizerUnitTest.hpp
195SubspaceFactorizerUnitTest_LDADD = ${GSLLIBS}
196
197TesselationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
198 TesselationUnitTest.cpp \
199 TesselationUnitTest.hpp
200TesselationUnitTest_LDADD = ${ALLLIBS}
201
202Tesselation_BoundaryTriangleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
203 Tesselation_BoundaryTriangleUnitTest.cpp \
204 Tesselation_BoundaryTriangleUnitTest.hpp
205Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
206
207Tesselation_InOutsideUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
208 Tesselation_InsideOutsideUnitTest.cpp \
209 Tesselation_InsideOutsideUnitTest.hpp
210Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
211
212WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
213 WorldTimeUnitTest.cpp \
214 WorldTimeUnitTest.hpp \
215 ../WorldTime.cpp \
216 ../WorldTime.hpp
217WorldTimeUnitTest_LDADD = ${BOOST_LIB}
218
219
220TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
221TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
222
223#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.