source: src/unittests/Makefile.am@ dc031c

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

Moved stuff in src/Helpers and src/Patterns out to stand-alone project CodePatterns.

Makefile.am's:

  • CodePatterns added to AM_LDFLAGS and AM_CFLAGS
  • libMoleCuilderHelpers removed

Helpers/...

  • defs.hpp include prefixed with Helpers/
  • helpers.?pp removed lots of old, unused functions: bound, ask_value, ...
  • fast_functions.hpp has lots of functions removed as well.
  • all other files and unit tests moved to project CodePatterns.

Patterns/...

  • added ax_codepatterns.m4 containing AM_PATH_CODEPATTERNS to configure.ac
  • Property mode set to 100644
File size: 7.3 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 ../UIElements/Menu/unittests
10
11INCLUDES = -I$(top_srcdir)/src
12
13AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
14AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
15
16TESTS = \
17 AnalysisBondsUnitTest \
18 AnalysisCorrelationToPointUnitTest \
19 AnalysisCorrelationToSurfaceUnitTest \
20 AnalysisPairCorrelationUnitTest \
21 BondGraphUnitTest \
22 BoxUnitTest \
23 CountBondsUnitTest \
24 FormulaUnittest \
25 LinkedCellUnitTest \
26 ListOfBondsUnitTest \
27 PeriodentafelUnitTest \
28 SubspaceFactorizerUnitTest \
29 TesselationUnitTest \
30 Tesselation_BoundaryTriangleUnitTest \
31 Tesselation_InOutsideUnitTest
32
33
34check_PROGRAMS = $(TESTS)
35noinst_PROGRAMS = $(TESTS) TestRunner
36
37BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
38GSLLIBS = \
39 ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
40 ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
41 $(BOOST_LIB)
42ALLLIBS = \
43 ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
44 ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
45 ${PARSERLIBS} \
46 ../libMolecuilder-@MOLECUILDER_API_VERSION@.la \
47 ${GSLLIBS}
48
49PARSERLIBS = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
50UILIBS = ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la
51
52TESTSOURCES = \
53 ../Actions/unittests/ActionRegistryUnitTest.cpp \
54 ../Actions/unittests/ActionSequenceUnitTest.cpp \
55 AnalysisBondsUnitTest.cpp \
56 AnalysisCorrelationToPointUnitTest.cpp \
57 AnalysisCorrelationToSurfaceUnitTest.cpp \
58 AnalysisPairCorrelationUnitTest.cpp \
59 ../Descriptors/unittests/AtomDescriptorUnitTest.cpp \
60 ../Actions/unittests/AtomsCalculationUnitTest.cpp \
61 BondGraphUnitTest.cpp \
62 BoxUnitTest.cpp \
63 CountBondsUnitTest.cpp \
64 FormulaUnitTest.cpp \
65 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.cpp \
66 ../LinearAlgebra/unittests/LineUnitTest.cpp \
67 LinkedCellUnitTest.cpp \
68 ListOfBondsUnitTest.cpp \
69 ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
70 ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.cpp \
71 ../LinearAlgebra/unittests/MatrixContentUnitTest.cpp \
72 ../LinearAlgebra/unittests/MatrixUnitTest.cpp \
73 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.cpp \
74 ../Descriptors/unittests/MoleculeDescriptorUnitTest.cpp \
75 ../Parser/unittests/ParserCommonUnitTest.cpp \
76 ../Parser/unittests/ParserTremoloUnitTest.cpp \
77 PeriodentafelUnitTest.cpp \
78 ../LinearAlgebra/unittests/PlaneUnitTest.cpp \
79 ../Shapes/unittests/ShapeUnitTest.cpp \
80 TesselationUnitTest.cpp \
81 Tesselation_BoundaryTriangleUnitTest.cpp \
82 Tesselation_InsideOutsideUnitTest.cpp \
83 ../LinearAlgebra/unittests/VectorContentUnitTest.cpp \
84 ../LinearAlgebra/unittests/VectorUnitTest.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 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.hpp \
100 ../LinearAlgebra/unittests/LineUnitTest.hpp \
101 LinkedCellUnitTest.hpp \
102 ListOfBondsUnitTest.hpp \
103 ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
104 ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.hpp \
105 ../LinearAlgebra/unittests/MatrixContentUnitTest.hpp \
106 ../LinearAlgebra/unittests/MatrixUnitTest.hpp \
107 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp \
108 ../Descriptors/unittests/MoleculeDescriptorUnitTest.hpp \
109 ../Parser/unittests/ParserCommonUnitTest.hpp \
110 ../Parser/unittests/ParserTremoloUnitTest.hpp \
111 PeriodentafelUnitTest.hpp \
112 ../LinearAlgebra/unittests/PlaneUnitTest.hpp \
113 ../Shapes/unittests/ShapeUnitTest.hpp \
114 TesselationUnitTest.hpp \
115 Tesselation_BoundaryTriangleUnitTest.hpp \
116 Tesselation_InsideOutsideUnitTest.hpp \
117 ../LinearAlgebra/unittests/VectorContentUnitTest.hpp \
118 ../LinearAlgebra/unittests/VectorUnitTest.hpp
119
120
121AnalysisBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
122 AnalysisBondsUnitTest.cpp \
123 AnalysisBondsUnitTest.hpp
124AnalysisBondsUnitTest_LDADD = ${ALLLIBS}
125
126AnalysisCorrelationToPointUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
127 analysis_correlation.hpp \
128 AnalysisCorrelationToPointUnitTest.cpp \
129 AnalysisCorrelationToPointUnitTest.hpp
130AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
131
132AnalysisCorrelationToSurfaceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
133 analysis_correlation.hpp \
134 AnalysisCorrelationToSurfaceUnitTest.cpp \
135 AnalysisCorrelationToSurfaceUnitTest.hpp
136AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
137
138AnalysisPairCorrelationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
139 analysis_correlation.hpp \
140 AnalysisPairCorrelationUnitTest.cpp \
141 AnalysisPairCorrelationUnitTest.hpp
142AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
143
144BondGraphUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
145 BondGraphUnitTest.cpp \
146 BondGraphUnitTest.hpp
147BondGraphUnitTest_LDADD = ${ALLLIBS}
148
149BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
150 BoxUnitTest.cpp \
151 BoxUnitTest.hpp
152BoxUnitTest_LDADD = ${ALLLIBS}
153
154CountBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
155 CountBondsUnitTest.cpp \
156 CountBondsUnitTest.hpp
157CountBondsUnitTest_LDADD = ${ALLLIBS}
158
159FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
160 FormulaUnitTest.cpp \
161 FormulaUnitTest.hpp
162FormulaUnittest_LDADD = ${ALLLIBS}
163
164LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
165 LinkedCellUnitTest.cpp \
166 LinkedCellUnitTest.hpp
167LinkedCellUnitTest_LDADD = ${ALLLIBS}
168
169ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
170 ListOfBondsUnitTest.cpp \
171 ListOfBondsUnitTest.hpp
172ListOfBondsUnitTest_LDADD = ${ALLLIBS}
173
174PeriodentafelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
175 PeriodentafelUnitTest.cpp \
176 PeriodentafelUnitTest.hpp
177PeriodentafelUnitTest_LDADD = ${ALLLIBS}
178
179SubspaceFactorizerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
180 SubspaceFactorizerUnitTest.cpp \
181 SubspaceFactorizerUnitTest.hpp
182SubspaceFactorizerUnitTest_LDADD = ${GSLLIBS}
183
184TesselationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
185 TesselationUnitTest.cpp \
186 TesselationUnitTest.hpp
187TesselationUnitTest_LDADD = ${ALLLIBS}
188
189Tesselation_BoundaryTriangleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
190 Tesselation_BoundaryTriangleUnitTest.cpp \
191 Tesselation_BoundaryTriangleUnitTest.hpp
192Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
193
194Tesselation_InOutsideUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
195 Tesselation_InsideOutsideUnitTest.cpp \
196 Tesselation_InsideOutsideUnitTest.hpp
197Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
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.