source: src/unittests/Makefile.am@ 3bdb6d

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

Moved all stuff related to elements into own subfolder and has its own convenience library.

  • this induced massive changes in includes in other files.
  • we adapted PeriodentafelUnitTest to not get instance from world, but we create it ourselves.
  • also moved all .db files related to elements into subfolder Element/.
  • Property mode set to 100644
File size: 4.2 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/Analysis/unittests/Makefile.am
10include ../../src/Descriptors/unittests/Makefile.am
11include ../../src/Fragmentation/unittests/Makefile.am
12include ../../src/Graph/unittests/Makefile.am
13include ../../src/Parser/unittests/Makefile.am
14include ../../src/RandomNumbers/unittests/Makefile.am
15include ../../src/Shapes/unittests/Makefile.am
16include ../../src/Tesselation/unittests/Makefile.am
17include ../../src/UIElements/CommandLineUI/unittests/Makefile.am
18include ../../src/UIElements/Menu/unittests/Makefile.am
19
20INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/src
21
22AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
23AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
24
25GENERALTESTS = \
26 BoxUnitTest \
27 ElementUnitTest \
28 FormulaUnittest \
29 LinkedCellUnitTest \
30 ListOfBondsUnitTest \
31 PeriodentafelUnitTest \
32 WorldTimeUnitTest
33
34# these ones are checked
35TESTS += $(GENERALTESTS)
36# these ones are built for checking only
37check_PROGRAMS += $(GENERALTESTS)
38# ... and not installed
39noinst_PROGRAMS += $(GENERALTESTS) TestRunner
40
41BOOST_LIB = \
42 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LIBS) \
43 $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
44 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
45
46ALLLIBS = \
47 ../libMolecuilderUI.la \
48 ../libMolecuilder.la \
49 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
50 ${CodePatterns_LIBS} \
51 $(BOOST_LIB)
52
53TESTSOURCES = \
54 ${ACTIONTESTSSOURCES} \
55 ${ANALYSISTESTSSOURCES} \
56 ${DESCRIPTORTESTSSOURCES} \
57 ${FRAGMENTATIONTESTSSOURCES} \
58 ${GRAPHTESTSSOURCES} \
59 ${LINEARALGEBRATESTSSOURCES} \
60 ${PARSERTESTSSOURCES} \
61 ${RANDOMNUMBERTESTSSOURCES} \
62 ${SHAPETESTSSOURCES} \
63 ${TESSELATIONTESTSSOURCES} \
64 $(UIELEMENTSCOMMANDLINEPARSERTESTSSOURCES) \
65 ${UIELEMENTSMENUTESTSSOURCES} \
66 BoxUnitTest.cpp \
67 ElementUnitTest.cpp \
68 FormulaUnitTest.cpp \
69 LinkedCellUnitTest.cpp \
70 ListOfBondsUnitTest.cpp \
71 PeriodentafelUnitTest.cpp \
72 WorldTimeUnitTest.cpp
73
74TESTHEADERS = \
75 ${ACTIONTESTSHEADERS} \
76 ${ANALYSISTESTSHEADERS} \
77 ${DESCRIPTORTESTSHEADERS} \
78 ${FRAGMENTATIONTESTSHEADERS} \
79 ${GRAPHTESTSHEADERS} \
80 ${LINEARALGEBRATESTSHEADERS} \
81 ${PARSERTESTSHEADERS} \
82 ${RANDOMNUMBERTESTSHEADERS} \
83 ${SHAPETESTSHEADERS} \
84 ${TESSELATIONTESTSHEADERS} \
85 $(UIELEMENTSCOMMANDLINEPARSERTESTSHEADERS) \
86 ${UIELEMENTSMENUTESTSHEADERS} \
87 BoxUnitTest.hpp \
88 ElementUnitTest.hpp \
89 FormulaUnitTest.hpp \
90 LinkedCellUnitTest.hpp \
91 ListOfBondsUnitTest.hpp \
92 PeriodentafelUnitTest.hpp \
93 WorldTimeUnitTest.hpp
94
95
96BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
97 BoxUnitTest.cpp \
98 BoxUnitTest.hpp
99BoxUnitTest_LDADD = ${ALLLIBS}
100
101ElementUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
102 ElementUnitTest.cpp \
103 ElementUnitTest.hpp
104ElementUnitTest_LDADD = \
105 ../libMolecuilderElement.la \
106 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
107
108FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
109 FormulaUnitTest.cpp \
110 FormulaUnitTest.hpp
111FormulaUnittest_LDADD = ${ALLLIBS}
112
113LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
114 LinkedCellUnitTest.cpp \
115 LinkedCellUnitTest.hpp
116LinkedCellUnitTest_LDADD = ${ALLLIBS}
117
118ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
119 ListOfBondsUnitTest.cpp \
120 ListOfBondsUnitTest.hpp
121ListOfBondsUnitTest_LDADD = ${ALLLIBS}
122
123PeriodentafelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
124 PeriodentafelUnitTest.cpp \
125 PeriodentafelUnitTest.hpp
126PeriodentafelUnitTest_LDADD = \
127 ../libMolecuilderElement.la \
128 ../libMolecuilderHelpers.la \
129 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
130
131WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
132 WorldTimeUnitTest.cpp \
133 WorldTimeUnitTest.hpp \
134 ../WorldTime.cpp \
135 ../WorldTime.hpp
136WorldTimeUnitTest_LDADD = ${BOOST_LIB}
137
138
139TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
140TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
141
142#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.