source: src/unittests/Makefile.am@ 38c5d1

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

Add new namespace BoundaryConditions with class BCContainer.

  • BCContainer is a convenience wrapper for the enumeration of the boundary conditions that allows easy setting/getting via strings.
  • Property mode set to 100644
File size: 4.4 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/Atom/unittests/Makefile.am
11include ../../src/Descriptors/unittests/Makefile.am
12include ../../src/Element/unittests/Makefile.am
13include ../../src/Fragmentation/unittests/Makefile.am
14include ../../src/Graph/unittests/Makefile.am
15include ../../src/LinkedCell/unittests/Makefile.am
16include ../../src/Parser/unittests/Makefile.am
17include ../../src/RandomNumbers/unittests/Makefile.am
18include ../../src/Shapes/unittests/Makefile.am
19include ../../src/Tesselation/unittests/Makefile.am
20include ../../src/UIElements/CommandLineUI/unittests/Makefile.am
21include ../../src/UIElements/Menu/unittests/Makefile.am
22
23INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/src
24
25AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
26AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
27
28GENERALTESTS = \
29 BoxUnitTest \
30 Box_BoundaryConditionsTest \
31 FormulaUnittest \
32 ListOfBondsUnitTest \
33 WorldTimeUnitTest
34
35# these ones are checked
36TESTS += $(GENERALTESTS)
37# these ones are built for checking only
38check_PROGRAMS += $(GENERALTESTS)
39# ... and not installed
40noinst_PROGRAMS += $(GENERALTESTS)
41
42if CONDECUT
43noinst_PROGRAMS += TestRunner
44endif
45
46
47BOOST_LIB = \
48 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LIBS) \
49 $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
50 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
51
52GENERALLIBS = \
53 ../libMolecuilder.la \
54 ../libMolecuilderHelpers.la \
55 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
56 ${CodePatterns_LIBS} \
57 $(BOOST_LIB)
58
59ALLLIBS = \
60 ../libMolecuilderUI.la \
61 ../libMolecuilder.la \
62 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
63 ${CodePatterns_LIBS} \
64 $(BOOST_LIB)
65
66TESTSOURCES = \
67 ${ACTIONTESTSSOURCES} \
68 ${ANALYSISTESTSSOURCES} \
69 ${DESCRIPTORTESTSSOURCES} \
70 ${ELEMENTTESTSSOURCES} \
71 ${FRAGMENTATIONTESTSSOURCES} \
72 ${GRAPHTESTSSOURCES} \
73 ${LINKEDCELLTESTSSOURCES} \
74 ${LINEARALGEBRATESTSSOURCES} \
75 ${PARSERTESTSSOURCES} \
76 ${RANDOMNUMBERTESTSSOURCES} \
77 ${SHAPETESTSSOURCES} \
78 ${TESSELATIONTESTSSOURCES} \
79 $(UIELEMENTSCOMMANDLINEPARSERTESTSSOURCES) \
80 ${UIELEMENTSMENUTESTSSOURCES} \
81 stubs/ObserverStub.cpp \
82 BoxUnitTest.cpp \
83 Box_BoundaryConditionsUnitTest.cpp \
84 FormulaUnitTest.cpp \
85 ListOfBondsUnitTest.cpp \
86 WorldTimeUnitTest.cpp
87
88TESTHEADERS = \
89 ${ACTIONTESTSHEADERS} \
90 ${ANALYSISTESTSHEADERS} \
91 ${DESCRIPTORTESTSHEADERS} \
92 ${ELEMENTTESTSHEADERS} \
93 ${FRAGMENTATIONTESTSHEADERS} \
94 ${GRAPHTESTSHEADERS} \
95 ${LINKEDCELLTESTHEADERS} \
96 ${LINEARALGEBRATESTSHEADERS} \
97 ${PARSERTESTSHEADERS} \
98 ${RANDOMNUMBERTESTSHEADERS} \
99 ${SHAPETESTSHEADERS} \
100 ${TESSELATIONTESTSHEADERS} \
101 $(UIELEMENTSCOMMANDLINEPARSERTESTSHEADERS) \
102 ${UIELEMENTSMENUTESTSHEADERS} \
103 stubs/ObserverStub.hpp \
104 BoxUnitTest.hpp \
105 Box_BoundaryConditionsUnitTest.hpp \
106 FormulaUnitTest.hpp \
107 ListOfBondsUnitTest.hpp \
108 WorldTimeUnitTest.hpp
109
110
111BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
112 BoxUnitTest.cpp \
113 BoxUnitTest.hpp \
114 stubs/ObserverStub.cpp \
115 stubs/ObserverStub.hpp
116BoxUnitTest_LDADD = \
117 ../libMolecuilder.la \
118 ../libMolecuilderShapes.la \
119 ../libMolecuilderHelpers.la \
120 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
121
122Box_BoundaryConditionsTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
123 Box_BoundaryConditionsUnitTest.cpp \
124 Box_BoundaryConditionsUnitTest.hpp \
125 ../Box_BoundaryConditions.cpp \
126 ../Box_BoundaryConditions.hpp
127Box_BoundaryConditionsTest_LDADD = \
128 ${CodePatterns_LIBS} \
129 $(BOOST_LIB)
130
131FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
132 FormulaUnitTest.cpp \
133 FormulaUnitTest.hpp
134FormulaUnittest_LDADD = $(ALLLIBS)
135
136ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
137 ListOfBondsUnitTest.cpp \
138 ListOfBondsUnitTest.hpp
139ListOfBondsUnitTest_LDADD = $(ALLLIBS)
140
141WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
142 WorldTimeUnitTest.cpp \
143 WorldTimeUnitTest.hpp \
144 ../WorldTime.cpp \
145 ../WorldTime.hpp
146WorldTimeUnitTest_LDADD = ${BOOST_LIB}
147
148
149TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
150TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
151
152#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.