source: src/unittests/Makefile.am@ b6f5bc

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 b6f5bc was 99f4ee, checked in by Frederik Heber <heber@…>, 14 years ago

Class Box is now also an Observable.

  • it has two channels to notify about changes in its Matrix and boundary conditions.
  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[18eecf]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
[455573]4check_PROGRAMS =
5noinst_PROGRAMS =
6TESTS =
7
8include ../../src/Actions/unittests/Makefile.am
[9b5a2c]9include ../../src/Analysis/unittests/Makefile.am
[97c2550]10include ../../src/Atom/unittests/Makefile.am
[455573]11include ../../src/Descriptors/unittests/Makefile.am
[592be9]12include ../../src/Element/unittests/Makefile.am
[feb7df]13include ../../src/Fragmentation/unittests/Makefile.am
[629e43]14include ../../src/Graph/unittests/Makefile.am
[91f592]15include ../../src/LinkedCell/unittests/Makefile.am
[455573]16include ../../src/Parser/unittests/Makefile.am
17include ../../src/RandomNumbers/unittests/Makefile.am
18include ../../src/Shapes/unittests/Makefile.am
[0b004b]19include ../../src/Tesselation/unittests/Makefile.am
[455573]20include ../../src/UIElements/CommandLineUI/unittests/Makefile.am
21include ../../src/UIElements/Menu/unittests/Makefile.am
[c0bccb]22
[bf4b9f]23INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/src
[b9907c]24
[f08ae7]25AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
[a0064e]26AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
[be90f1]27
[455573]28GENERALTESTS = \
[f844ef]29 BoxUnitTest \
[9f632c]30 FormulaUnittest \
[9fb860]31 ListOfBondsUnitTest \
[f649de]32 WorldTimeUnitTest
[4fbca9c]33
[455573]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
[b9907c]40
[f08ae7]41BOOST_LIB = \
42 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LIBS) \
[d7d022]43 $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
44 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
[455573]45
[9d4ff35]46GENERALLIBS = \
47 ../libMolecuilder.la \
48 ../libMolecuilderHelpers.la \
49 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
50 ${CodePatterns_LIBS} \
51 $(BOOST_LIB)
52
[f4b5b7]53ALLLIBS = \
[455573]54 ../libMolecuilderUI.la \
[acbe1b]55 ../libMolecuilder.la \
[455573]56 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
57 ${CodePatterns_LIBS} \
58 $(BOOST_LIB)
[4d9c01]59
[9b6b2f]60TESTSOURCES = \
[455573]61 ${ACTIONTESTSSOURCES} \
[9b5a2c]62 ${ANALYSISTESTSSOURCES} \
[455573]63 ${DESCRIPTORTESTSSOURCES} \
[592be9]64 ${ELEMENTTESTSSOURCES} \
[feb7df]65 ${FRAGMENTATIONTESTSSOURCES} \
[629e43]66 ${GRAPHTESTSSOURCES} \
[794bc8]67 ${LINKEDCELLTESTSSOURCES} \
[455573]68 ${LINEARALGEBRATESTSSOURCES} \
69 ${PARSERTESTSSOURCES} \
70 ${RANDOMNUMBERTESTSSOURCES} \
71 ${SHAPETESTSSOURCES} \
[0b004b]72 ${TESSELATIONTESTSSOURCES} \
[455573]73 $(UIELEMENTSCOMMANDLINEPARSERTESTSSOURCES) \
74 ${UIELEMENTSMENUTESTSSOURCES} \
[99f4ee]75 stubs/ObserverStub.cpp \
[f844ef]76 BoxUnitTest.cpp \
77 FormulaUnitTest.cpp \
78 ListOfBondsUnitTest.cpp \
[f649de]79 WorldTimeUnitTest.cpp
[9b6b2f]80
81TESTHEADERS = \
[455573]82 ${ACTIONTESTSHEADERS} \
[9b5a2c]83 ${ANALYSISTESTSHEADERS} \
[455573]84 ${DESCRIPTORTESTSHEADERS} \
[592be9]85 ${ELEMENTTESTSHEADERS} \
[feb7df]86 ${FRAGMENTATIONTESTSHEADERS} \
[629e43]87 ${GRAPHTESTSHEADERS} \
[794bc8]88 ${LINKEDCELLTESTHEADERS} \
[455573]89 ${LINEARALGEBRATESTSHEADERS} \
90 ${PARSERTESTSHEADERS} \
91 ${RANDOMNUMBERTESTSHEADERS} \
92 ${SHAPETESTSHEADERS} \
[0b004b]93 ${TESSELATIONTESTSHEADERS} \
[455573]94 $(UIELEMENTSCOMMANDLINEPARSERTESTSHEADERS) \
95 ${UIELEMENTSMENUTESTSHEADERS} \
[99f4ee]96 stubs/ObserverStub.hpp \
[f844ef]97 BoxUnitTest.hpp \
98 FormulaUnitTest.hpp \
99 ListOfBondsUnitTest.hpp \
[bf4b9f]100 WorldTimeUnitTest.hpp
[9fb860]101
[9b6b2f]102
[f844ef]103BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
104 BoxUnitTest.cpp \
[99f4ee]105 BoxUnitTest.hpp \
106 stubs/ObserverStub.cpp \
107 stubs/ObserverStub.hpp
[9d4ff35]108BoxUnitTest_LDADD = \
109 ../libMolecuilder.la \
110 ../libMolecuilderShapes.la \
111 ../libMolecuilderHelpers.la \
112 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
[77bc4f]113
[f844ef]114FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
115 FormulaUnitTest.cpp \
116 FormulaUnitTest.hpp
[9d4ff35]117FormulaUnittest_LDADD = $(ALLLIBS)
[9f632c]118
[f844ef]119ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
120 ListOfBondsUnitTest.cpp \
121 ListOfBondsUnitTest.hpp
[9d4ff35]122ListOfBondsUnitTest_LDADD = $(ALLLIBS)
[266237]123
[f649de]124WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
125 WorldTimeUnitTest.cpp \
126 WorldTimeUnitTest.hpp \
127 ../WorldTime.cpp \
128 ../WorldTime.hpp
129WorldTimeUnitTest_LDADD = ${BOOST_LIB}
130
131
[36166d]132TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
[b37436]133TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
[7a1ce5]134
[18eecf]135#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.