source: src/unittests/Makefile.am@ 794bc8

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

Added LinkedCell as commodity class around LinkedList.

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