source: src/unittests/Makefile.am@ 851be8

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 851be8 was 9d4ff35, checked in by Frederik Heber <heber@…>, 14 years ago

Reduced library dependencies of RandomNumbers and BoxUnitTest.

  • 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
[455573]10include ../../src/Descriptors/unittests/Makefile.am
[592be9]11include ../../src/Element/unittests/Makefile.am
[feb7df]12include ../../src/Fragmentation/unittests/Makefile.am
[629e43]13include ../../src/Graph/unittests/Makefile.am
[455573]14include ../../src/Parser/unittests/Makefile.am
15include ../../src/RandomNumbers/unittests/Makefile.am
16include ../../src/Shapes/unittests/Makefile.am
[0b004b]17include ../../src/Tesselation/unittests/Makefile.am
[455573]18include ../../src/UIElements/CommandLineUI/unittests/Makefile.am
19include ../../src/UIElements/Menu/unittests/Makefile.am
[c0bccb]20
[bf4b9f]21INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/src
[b9907c]22
[f08ae7]23AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
[a0064e]24AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
[be90f1]25
[455573]26GENERALTESTS = \
[f844ef]27 BoxUnitTest \
[9f632c]28 FormulaUnittest \
[dcea0f]29 LinkedCellUnitTest \
[9fb860]30 ListOfBondsUnitTest \
[f649de]31 WorldTimeUnitTest
[4fbca9c]32
[455573]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
[b9907c]39
[f08ae7]40BOOST_LIB = \
41 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LIBS) \
[d7d022]42 $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
43 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
[455573]44
[9d4ff35]45GENERALLIBS = \
46 ../libMolecuilder.la \
47 ../libMolecuilderHelpers.la \
48 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
49 ${CodePatterns_LIBS} \
50 $(BOOST_LIB)
51
[f4b5b7]52ALLLIBS = \
[455573]53 ../libMolecuilderUI.la \
[acbe1b]54 ../libMolecuilder.la \
[455573]55 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
56 ${CodePatterns_LIBS} \
57 $(BOOST_LIB)
[4d9c01]58
[9b6b2f]59TESTSOURCES = \
[455573]60 ${ACTIONTESTSSOURCES} \
[9b5a2c]61 ${ANALYSISTESTSSOURCES} \
[455573]62 ${DESCRIPTORTESTSSOURCES} \
[592be9]63 ${ELEMENTTESTSSOURCES} \
[feb7df]64 ${FRAGMENTATIONTESTSSOURCES} \
[629e43]65 ${GRAPHTESTSSOURCES} \
[455573]66 ${LINEARALGEBRATESTSSOURCES} \
67 ${PARSERTESTSSOURCES} \
68 ${RANDOMNUMBERTESTSSOURCES} \
69 ${SHAPETESTSSOURCES} \
[0b004b]70 ${TESSELATIONTESTSSOURCES} \
[455573]71 $(UIELEMENTSCOMMANDLINEPARSERTESTSSOURCES) \
72 ${UIELEMENTSMENUTESTSSOURCES} \
[f844ef]73 BoxUnitTest.cpp \
74 FormulaUnitTest.cpp \
[5f612ee]75 LinkedCellUnitTest.cpp \
[f844ef]76 ListOfBondsUnitTest.cpp \
[f649de]77 WorldTimeUnitTest.cpp
[9b6b2f]78
79TESTHEADERS = \
[455573]80 ${ACTIONTESTSHEADERS} \
[9b5a2c]81 ${ANALYSISTESTSHEADERS} \
[455573]82 ${DESCRIPTORTESTSHEADERS} \
[592be9]83 ${ELEMENTTESTSHEADERS} \
[feb7df]84 ${FRAGMENTATIONTESTSHEADERS} \
[629e43]85 ${GRAPHTESTSHEADERS} \
[455573]86 ${LINEARALGEBRATESTSHEADERS} \
87 ${PARSERTESTSHEADERS} \
88 ${RANDOMNUMBERTESTSHEADERS} \
89 ${SHAPETESTSHEADERS} \
[0b004b]90 ${TESSELATIONTESTSHEADERS} \
[455573]91 $(UIELEMENTSCOMMANDLINEPARSERTESTSHEADERS) \
92 ${UIELEMENTSMENUTESTSHEADERS} \
[f844ef]93 BoxUnitTest.hpp \
94 FormulaUnitTest.hpp \
[5f612ee]95 LinkedCellUnitTest.hpp \
[f844ef]96 ListOfBondsUnitTest.hpp \
[bf4b9f]97 WorldTimeUnitTest.hpp
[9fb860]98
[9b6b2f]99
[f844ef]100BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
101 BoxUnitTest.cpp \
102 BoxUnitTest.hpp
[9d4ff35]103BoxUnitTest_LDADD = \
104 ../libMolecuilder.la \
105 ../libMolecuilderShapes.la \
106 ../libMolecuilderHelpers.la \
107 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
[77bc4f]108
[f844ef]109FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
110 FormulaUnitTest.cpp \
111 FormulaUnitTest.hpp
[9d4ff35]112FormulaUnittest_LDADD = $(ALLLIBS)
[9f632c]113
[f844ef]114LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
115 LinkedCellUnitTest.cpp \
116 LinkedCellUnitTest.hpp
[9d4ff35]117LinkedCellUnitTest_LDADD = $(ALLLIBS)
[46ea3b]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.