source: src/Fragmentation/Summation/unittests/Makefile.am@ c4fd03

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 c4fd03 was e920061, checked in by Frederik Heber <heber@…>, 12 years ago

libMolecuilderFagmentationSummation is now just a normal convenience library.

  • We might keep it as a shared as it is independent of others. However, as libtool is buggy with pulling in shared library dependencies, we would have to add them also to the executables LDADD.
  • also we removed the extra compilation SUBDIRS.
  • adapted all paths in Makefile.am and unittests/Makefile.am.
  • Property mode set to 100644
File size: 3.1 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4FRAGMENTATIONSUMMATIONTESTSSOURCES = \
5 ../Fragmentation/Summation/unittests/IndexSetUnitTest.cpp \
6 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \
7 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \
8 ../Fragmentation/Summation/unittests/SetValueUnitTest.cpp \
9 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \
10 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp
11
12FRAGMENTATIONSUMMATIONTESTSHEADERS = \
13 ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp \
14 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \
15 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp \
16 ../Fragmentation/Summation/unittests/SetValueUnitTest.hpp \
17 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp \
18 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp
19
20FRAGMENTATIONSUMMATIONTESTS = \
21 IndexSetUnitTest \
22 IndexSetContainerUnitTest \
23 OrthogonalSummationUnitTest \
24 SetValueUnitTest \
25 SetValueMapUnitTest \
26 SubsetMapUnitTest
27
28TESTS += $(FRAGMENTATIONSUMMATIONTESTS)
29check_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS)
30noinst_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS)
31
32FRAGMENTATIONSUMMATIONLIBS = \
33 ../libMolecuilderFragmentationSummation.la \
34 ${CodePatterns_LIBS} \
35 $(BOOST_LIB)
36
37
38IndexSetUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
39 ../Fragmentation/Summation/unittests/IndexSetUnitTest.cpp \
40 ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp
41IndexSetUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
42
43IndexSetContainerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
44 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \
45 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.hpp
46IndexSetContainerUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
47
48OrthogonalSummationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
49 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \
50 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp
51OrthogonalSummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
52
53SetValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
54 ../Fragmentation/Summation/unittests/SetValueUnitTest.cpp \
55 ../Fragmentation/Summation/unittests/SetValueUnitTest.hpp \
56 ../Fragmentation/Summation/unittests/stubs/SetValueMap_Mock.hpp \
57 ../Fragmentation/Summation/unittests/stubs/SubsetMap_Mock.hpp
58SetValueUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
59
60SetValueMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
61 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \
62 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp
63SetValueMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
64
65SubsetMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
66 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp \
67 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp
68SubsetMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
69
70
71#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.