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

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

Moved all unittests on Tesselation into subfolder Tesselation/unittests.

  • new Makefile.am is included in src/unittests/Makefile.am.
  • Property mode set to 100644
File size: 5.6 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4check_PROGRAMS =
5noinst_PROGRAMS =
6TESTS =
7
8include ../../src/Actions/unittests/Makefile.am
9include ../../src/Descriptors/unittests/Makefile.am
10include ../../src/Fragmentation/unittests/Makefile.am
11include ../../src/Parser/unittests/Makefile.am
12include ../../src/RandomNumbers/unittests/Makefile.am
13include ../../src/Shapes/unittests/Makefile.am
14include ../../src/Tesselation/unittests/Makefile.am
15include ../../src/UIElements/CommandLineUI/unittests/Makefile.am
16include ../../src/UIElements/Menu/unittests/Makefile.am
17
18INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/src
19
20AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
21AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
22
23GENERALTESTS = \
24 AnalysisBondsUnitTest \
25 AnalysisCorrelationToPointUnitTest \
26 AnalysisCorrelationToSurfaceUnitTest \
27 AnalysisPairCorrelationUnitTest \
28 BondGraphUnitTest \
29 BoxUnitTest \
30 CountBondsUnitTest \
31 ElementUnitTest \
32 FormulaUnittest \
33 LinkedCellUnitTest \
34 ListOfBondsUnitTest \
35 PeriodentafelUnitTest \
36 WorldTimeUnitTest
37
38# these ones are checked
39TESTS += $(GENERALTESTS)
40# these ones are built for checking only
41check_PROGRAMS += $(GENERALTESTS)
42# ... and not installed
43noinst_PROGRAMS += $(GENERALTESTS) TestRunner
44
45BOOST_LIB = \
46 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LIBS) \
47 $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
48 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
49
50ALLLIBS = \
51 ../libMolecuilderUI.la \
52 ../libMolecuilder.la \
53 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
54 ${CodePatterns_LIBS} \
55 $(BOOST_LIB)
56
57TESTSOURCES = \
58 ${ACTIONTESTSSOURCES} \
59 ${DESCRIPTORTESTSSOURCES} \
60 ${FRAGMENTATIONTESTSSOURCES} \
61 ${LINEARALGEBRATESTSSOURCES} \
62 ${PARSERTESTSSOURCES} \
63 ${RANDOMNUMBERTESTSSOURCES} \
64 ${SHAPETESTSSOURCES} \
65 ${TESSELATIONTESTSSOURCES} \
66 $(UIELEMENTSCOMMANDLINEPARSERTESTSSOURCES) \
67 ${UIELEMENTSMENUTESTSSOURCES} \
68 AnalysisBondsUnitTest.cpp \
69 AnalysisCorrelationToPointUnitTest.cpp \
70 AnalysisCorrelationToSurfaceUnitTest.cpp \
71 AnalysisPairCorrelationUnitTest.cpp \
72 BondGraphUnitTest.cpp \
73 BoxUnitTest.cpp \
74 CountBondsUnitTest.cpp \
75 ElementUnitTest.cpp \
76 FormulaUnitTest.cpp \
77 LinkedCellUnitTest.cpp \
78 ListOfBondsUnitTest.cpp \
79 PeriodentafelUnitTest.cpp \
80 WorldTimeUnitTest.cpp
81
82TESTHEADERS = \
83 ${ACTIONTESTSHEADERS} \
84 ${DESCRIPTORTESTSHEADERS} \
85 ${FRAGMENTATIONTESTSHEADERS} \
86 ${LINEARALGEBRATESTSHEADERS} \
87 ${PARSERTESTSHEADERS} \
88 ${RANDOMNUMBERTESTSHEADERS} \
89 ${SHAPETESTSHEADERS} \
90 ${TESSELATIONTESTSHEADERS} \
91 $(UIELEMENTSCOMMANDLINEPARSERTESTSHEADERS) \
92 ${UIELEMENTSMENUTESTSHEADERS} \
93 AnalysisBondsUnitTest.hpp \
94 AnalysisCorrelationToPointUnitTest.hpp \
95 AnalysisCorrelationToSurfaceUnitTest.hpp \
96 AnalysisPairCorrelationUnitTest.hpp \
97 BondGraphUnitTest.hpp \
98 BoxUnitTest.hpp \
99 CountBondsUnitTest.hpp \
100 ElementUnitTest.hpp \
101 FormulaUnitTest.hpp \
102 LinkedCellUnitTest.hpp \
103 ListOfBondsUnitTest.hpp \
104 PeriodentafelUnitTest.hpp \
105 WorldTimeUnitTest.hpp
106
107
108AnalysisBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
109 AnalysisBondsUnitTest.cpp \
110 AnalysisBondsUnitTest.hpp
111AnalysisBondsUnitTest_LDADD = ${ALLLIBS}
112
113AnalysisCorrelationToPointUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
114 AnalysisCorrelationToPointUnitTest.cpp \
115 AnalysisCorrelationToPointUnitTest.hpp
116AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
117
118AnalysisCorrelationToSurfaceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
119 AnalysisCorrelationToSurfaceUnitTest.cpp \
120 AnalysisCorrelationToSurfaceUnitTest.hpp
121AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
122
123AnalysisPairCorrelationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
124 AnalysisPairCorrelationUnitTest.cpp \
125 AnalysisPairCorrelationUnitTest.hpp
126AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
127
128BondGraphUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
129 BondGraphUnitTest.cpp \
130 BondGraphUnitTest.hpp
131BondGraphUnitTest_LDADD = ${ALLLIBS}
132
133BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
134 BoxUnitTest.cpp \
135 BoxUnitTest.hpp
136BoxUnitTest_LDADD = ${ALLLIBS}
137
138CountBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
139 CountBondsUnitTest.cpp \
140 CountBondsUnitTest.hpp
141CountBondsUnitTest_LDADD = ${ALLLIBS}
142
143ElementUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
144 ElementUnitTest.cpp \
145 ../element.cpp \
146 ElementUnitTest.hpp \
147 ../element.hpp
148ElementUnitTest_LDADD = \
149 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
150
151FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
152 FormulaUnitTest.cpp \
153 FormulaUnitTest.hpp
154FormulaUnittest_LDADD = ${ALLLIBS}
155
156LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
157 LinkedCellUnitTest.cpp \
158 LinkedCellUnitTest.hpp
159LinkedCellUnitTest_LDADD = ${ALLLIBS}
160
161ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
162 ListOfBondsUnitTest.cpp \
163 ListOfBondsUnitTest.hpp
164ListOfBondsUnitTest_LDADD = ${ALLLIBS}
165
166PeriodentafelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
167 PeriodentafelUnitTest.cpp \
168 PeriodentafelUnitTest.hpp
169PeriodentafelUnitTest_LDADD = ${ALLLIBS}
170
171WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
172 WorldTimeUnitTest.cpp \
173 WorldTimeUnitTest.hpp \
174 ../WorldTime.cpp \
175 ../WorldTime.hpp
176WorldTimeUnitTest_LDADD = ${BOOST_LIB}
177
178
179TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
180TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
181
182#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.