source: src/unittests/Makefile.am@ bf4b9f

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

Moved LinearAlgebra from folder src/ into distinct sub-package.

  • src/LinearAlgebra folder is now LinearAlgebra/src/LinearAlgebra due to include consistency.
  • src/LinearAlgebra/unittests have been moved to LinearAlgebra/unittests.
  • All Makefile.am's had to be changed due to changed location of library.
  • renamed libMolecuilderLinearAlgebra to libLinearAlgebra.
  • CONFIG_AUX_DIR is build-aux 9for molecuilder and LinearAlgebra).
  • m4 is symlinked from below.
  • build-aux now contains small README such that it is created automatically.
  • Property mode set to 100644
File size: 7.0 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 ../Parser/unittests \
8 ../RandomNumbers/unittests \
9 ../Shapes/unittests \
10 ../UIElements/CommandLineUI/unittests \
11 ../UIElements/Menu/unittests
12
13INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/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 TesselationUnitTest \
31 Tesselation_BoundaryTriangleUnitTest \
32 Tesselation_InOutsideUnitTest \
33 WorldTimeUnitTest
34
35
36check_PROGRAMS = $(TESTS)
37noinst_PROGRAMS = $(TESTS) TestRunner
38
39BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
40GSLLIBS = \
41 ../Shapes/libMolecuilderShapes.la \
42 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
43 ../RandomNumbers/libMolecuilderRandomNumbers.la \
44 $(BOOST_LIB)
45ALLLIBS = \
46 ../UIElements/libMolecuilderUI.la \
47 ../Actions/libMolecuilderActions.la \
48 ${PARSERLIBS} \
49 ../libMolecuilder.la \
50 ${GSLLIBS}
51
52PARSERLIBS = ../Parser/libMolecuilderParser.la
53UILIBS = ../UIElements/libMolecuilderUI.la
54
55TESTSOURCES = \
56 ../Actions/unittests/ActionRegistryUnitTest.cpp \
57 ../Actions/unittests/ActionSequenceUnitTest.cpp \
58 AnalysisBondsUnitTest.cpp \
59 AnalysisCorrelationToPointUnitTest.cpp \
60 AnalysisCorrelationToSurfaceUnitTest.cpp \
61 AnalysisPairCorrelationUnitTest.cpp \
62 ../Descriptors/unittests/AtomDescriptorUnitTest.cpp \
63 ../Actions/unittests/AtomsCalculationUnitTest.cpp \
64 BondGraphUnitTest.cpp \
65 BoxUnitTest.cpp \
66 CountBondsUnitTest.cpp \
67 FormulaUnitTest.cpp \
68 LinkedCellUnitTest.cpp \
69 ListOfBondsUnitTest.cpp \
70 ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
71 ../UIElements/CommandLineUI/unittests/CommandLineParser_ActionRegistry_ConsistenyUnitTest.cpp \
72 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.cpp \
73 ../Descriptors/unittests/MoleculeDescriptorUnitTest.cpp \
74 ../Parser/unittests/ParserMpqcUnitTest.cpp \
75 ../Parser/unittests/ParserPcpUnitTest.cpp \
76 ../Parser/unittests/ParserPdbUnitTest.cpp \
77 ../Parser/unittests/ParserTremoloUnitTest.cpp \
78 ../Parser/unittests/ParserXyzUnitTest.cpp \
79 PeriodentafelUnitTest.cpp \
80 ../Shapes/unittests/ShapeUnitTest.cpp \
81 TesselationUnitTest.cpp \
82 Tesselation_BoundaryTriangleUnitTest.cpp \
83 Tesselation_InsideOutsideUnitTest.cpp \
84 WorldTimeUnitTest.cpp
85
86TESTHEADERS = \
87 ../Actions/unittests/ActionRegistryUnitTest.hpp \
88 ../Actions/unittests/ActionSequenceUnitTest.hpp \
89 AnalysisBondsUnitTest.hpp \
90 AnalysisCorrelationToPointUnitTest.hpp \
91 AnalysisCorrelationToSurfaceUnitTest.hpp \
92 AnalysisPairCorrelationUnitTest.hpp \
93 ../Descriptors/unittests/AtomDescriptorUnitTest.hpp \
94 ../Actions/unittests/AtomsCalculationUnitTest.hpp \
95 BondGraphUnitTest.hpp \
96 BoxUnitTest.hpp \
97 CountBondsUnitTest.hpp \
98 FormulaUnitTest.hpp \
99 LinkedCellUnitTest.hpp \
100 ListOfBondsUnitTest.hpp \
101 ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
102 ../UIElements/CommandLineUI/unittests/CommandLineParser_ActionRegistry_ConsistenyUnitTest.hpp \
103 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp \
104 ../Descriptors/unittests/MoleculeDescriptorUnitTest.hpp \
105 ../Parser/unittests/ParserMpqcUnitTest.hpp \
106 ../Parser/unittests/ParserPcpUnitTest.hpp \
107 ../Parser/unittests/ParserPdbUnitTest.hpp \
108 ../Parser/unittests/ParserTremoloUnitTest.hpp \
109 ../Parser/unittests/ParserXyzUnitTest.hpp \
110 PeriodentafelUnitTest.hpp \
111 ../Shapes/unittests/ShapeUnitTest.hpp \
112 TesselationUnitTest.hpp \
113 Tesselation_BoundaryTriangleUnitTest.hpp \
114 Tesselation_InsideOutsideUnitTest.hpp \
115 WorldTimeUnitTest.hpp
116
117
118AnalysisBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
119 AnalysisBondsUnitTest.cpp \
120 AnalysisBondsUnitTest.hpp
121AnalysisBondsUnitTest_LDADD = ${ALLLIBS}
122
123AnalysisCorrelationToPointUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
124 analysis_correlation.hpp \
125 AnalysisCorrelationToPointUnitTest.cpp \
126 AnalysisCorrelationToPointUnitTest.hpp
127AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
128
129AnalysisCorrelationToSurfaceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
130 analysis_correlation.hpp \
131 AnalysisCorrelationToSurfaceUnitTest.cpp \
132 AnalysisCorrelationToSurfaceUnitTest.hpp
133AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
134
135AnalysisPairCorrelationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
136 analysis_correlation.hpp \
137 AnalysisPairCorrelationUnitTest.cpp \
138 AnalysisPairCorrelationUnitTest.hpp
139AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
140
141BondGraphUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
142 BondGraphUnitTest.cpp \
143 BondGraphUnitTest.hpp
144BondGraphUnitTest_LDADD = ${ALLLIBS}
145
146BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
147 BoxUnitTest.cpp \
148 BoxUnitTest.hpp
149BoxUnitTest_LDADD = ${ALLLIBS}
150
151CountBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
152 CountBondsUnitTest.cpp \
153 CountBondsUnitTest.hpp
154CountBondsUnitTest_LDADD = ${ALLLIBS}
155
156FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
157 FormulaUnitTest.cpp \
158 FormulaUnitTest.hpp
159FormulaUnittest_LDADD = ${ALLLIBS}
160
161LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
162 LinkedCellUnitTest.cpp \
163 LinkedCellUnitTest.hpp
164LinkedCellUnitTest_LDADD = ${ALLLIBS}
165
166ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
167 ListOfBondsUnitTest.cpp \
168 ListOfBondsUnitTest.hpp
169ListOfBondsUnitTest_LDADD = ${ALLLIBS}
170
171PeriodentafelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
172 PeriodentafelUnitTest.cpp \
173 PeriodentafelUnitTest.hpp
174PeriodentafelUnitTest_LDADD = ${ALLLIBS}
175
176TesselationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
177 TesselationUnitTest.cpp \
178 TesselationUnitTest.hpp
179TesselationUnitTest_LDADD = ${ALLLIBS}
180
181Tesselation_BoundaryTriangleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
182 Tesselation_BoundaryTriangleUnitTest.cpp \
183 Tesselation_BoundaryTriangleUnitTest.hpp
184Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
185
186Tesselation_InOutsideUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
187 Tesselation_InsideOutsideUnitTest.cpp \
188 Tesselation_InsideOutsideUnitTest.hpp
189Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
190
191WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
192 WorldTimeUnitTest.cpp \
193 WorldTimeUnitTest.hpp \
194 ../WorldTime.cpp \
195 ../WorldTime.hpp
196WorldTimeUnitTest_LDADD = ${BOOST_LIB}
197
198
199TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
200TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
201
202#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.