source: src/Fragmentation/Summation/unittests/Makefile.am@ 9eb71b3

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes
Last change on this file since 9eb71b3 was 748fc7, checked in by Frederik Heber <heber@…>, 11 years ago

libMolecuilder is now a shared library.

  • linking error Vector::IsZero(double) with molecuilder(gui), related to libMolecuilderShapes was the root cause for this change. Again, it was not deducible why this error occured:
  • probably (me tired of these obfuscated linker errors ...) faulted because libMolecuilder is convenience lib while libMolecuilderUI and ..QtUI are shared and deps did not get passed along properly (by libtool) (e.g. ldd showed libMolecuilderShapes prior to libLinearAlgebra, containing said function Vector::IsZero(double), but I cannot influence this ordering and it should not even matter (dynamic linking).)
  • some cleanup in builder_init.cpp (no more loading of BondGraph from file named "\n".
  • TESTFIX: libMolecuilder.so added to all unittests, required for e.g. World::purgeInstance() ... and sometimes added libMolecuilderUI.so because libMolecuilder pulled them in due to static entities ... sigh.
  • removed all src object files from unittest .._SOURCES. This caused distclean faults "thanks" to new subdir-objects (automake).
  • Property mode set to 100644
File size: 3.5 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 ../Fragmentation/Summation/unittests/SummationUnitTest.cpp
12
13FRAGMENTATIONSUMMATIONTESTSHEADERS = \
14 ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp \
15 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \
16 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp \
17 ../Fragmentation/Summation/unittests/SetValueUnitTest.hpp \
18 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp \
19 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp \
20 ../Fragmentation/Summation/unittests/SummationUnitTest.hpp
21
22FRAGMENTATIONSUMMATIONTESTS = \
23 IndexSetUnitTest \
24 IndexSetContainerUnitTest \
25 OrthogonalSummationUnitTest \
26 SetValueUnitTest \
27 SetValueMapUnitTest \
28 SubsetMapUnitTest \
29 SummationUnitTest
30
31TESTS += $(FRAGMENTATIONSUMMATIONTESTS)
32check_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS)
33noinst_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS)
34
35FRAGMENTATIONSUMMATIONLIBS = \
36 libUnitTest.la \
37 ../libMolecuilder.la \
38 ../libMolecuilderFragmentationSummation.la \
39 ${CodePatterns_LIBS} \
40 $(BOOST_LIB)
41
42
43IndexSetUnitTest_SOURCES = \
44 ../Fragmentation/Summation/unittests/IndexSetUnitTest.cpp \
45 ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp
46IndexSetUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
47
48IndexSetContainerUnitTest_SOURCES = \
49 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \
50 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.hpp
51IndexSetContainerUnitTest_LDADD = \
52 ../libMolecuilderFragmentation.la \
53 ../libMolecuilderFragmentation_KeysetsContainer.la \
54 ../libMolecuilderHelpers.la \
55 ${FRAGMENTATIONSUMMATIONLIBS}
56
57OrthogonalSummationUnitTest_SOURCES = \
58 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \
59 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp \
60 ../Fragmentation/Summation/OrthogonalSummation.hpp \
61 ../Fragmentation/Summation/OrthogonalSummation_impl.hpp
62OrthogonalSummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
63
64SetValueUnitTest_SOURCES = \
65 ../Fragmentation/Summation/unittests/SetValueUnitTest.cpp \
66 ../Fragmentation/Summation/unittests/SetValueUnitTest.hpp \
67 ../Fragmentation/Summation/unittests/stubs/SetValueMap_Mock.hpp \
68 ../Fragmentation/Summation/unittests/stubs/SubsetMap_Mock.hpp
69SetValueUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
70
71SetValueMapUnitTest_SOURCES = \
72 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \
73 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp
74SetValueMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
75
76SubsetMapUnitTest_SOURCES = \
77 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp \
78 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp
79SubsetMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
80
81SummationUnitTest_SOURCES = \
82 ../Fragmentation/Summation/unittests/SummationUnitTest.cpp \
83 ../Fragmentation/Summation/unittests/SummationUnitTest.hpp \
84 ../Fragmentation/Summation/Summation.hpp \
85 ../Fragmentation/Summation/Summation_impl.hpp
86SummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
87
88
89#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.