source: src/Fragmentation/Summation/unittests/Makefile.am@ 6ef48c

Last change on this file since 6ef48c was 353326, checked in by Frederik Heber <heber@…>, 12 years ago

FIX: Changed LIBADDs and LDADDs to get rid of libtool patching.

  • with the new ubuntu version libtool is told not to pass through dependencies in a hierarchy of shared libraries. Thus, we have been using a small patch to tell libtool to pass nonetheless. However, this is not necessary if the structure is slightly changed:
    • cleanUp now resides with libMolecuilderUI.la instead of molecuilder and molecuildergui directly
    • added LIBADD to libMolecuilder.la with libMolecuilderShapes.la
    • fixed some unit tests LDADDs
  • Property mode set to 100644
File size: 3.8 KB
RevLine 
[146c26d]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4FRAGMENTATIONSUMMATIONTESTSSOURCES = \
[e920061]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 \
[c40e15d]10 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp \
11 ../Fragmentation/Summation/unittests/SummationUnitTest.cpp
[146c26d]12
13FRAGMENTATIONSUMMATIONTESTSHEADERS = \
[e920061]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 \
[c40e15d]19 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp \
20 ../Fragmentation/Summation/unittests/SummationUnitTest.hpp
[146c26d]21
22FRAGMENTATIONSUMMATIONTESTS = \
[063fab]23 IndexSetUnitTest \
[2df580]24 IndexSetContainerUnitTest \
[1e7dd4]25 OrthogonalSummationUnitTest \
[d699de]26 SetValueUnitTest \
[c508fea]27 SetValueMapUnitTest \
[c40e15d]28 SubsetMapUnitTest \
29 SummationUnitTest
[146c26d]30
31TESTS += $(FRAGMENTATIONSUMMATIONTESTS)
32check_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS)
33noinst_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS)
34
35FRAGMENTATIONSUMMATIONLIBS = \
[e920061]36 ../libMolecuilderFragmentationSummation.la \
[146c26d]37 ${CodePatterns_LIBS} \
38 $(BOOST_LIB)
39
40
41IndexSetUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
[e920061]42 ../Fragmentation/Summation/unittests/IndexSetUnitTest.cpp \
43 ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp
[146c26d]44IndexSetUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
45
[063fab]46IndexSetContainerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
[e920061]47 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \
48 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.hpp
[fb69e9]49IndexSetContainerUnitTest_LDADD = \
50 ../libMolecuilderFragmentation.la \
[353326]51 ../libMolecuilderFragmentation_KeysetsContainer.la \
[fb69e9]52 ../libMolecuilderHelpers.la \
53 ${FRAGMENTATIONSUMMATIONLIBS}
[146c26d]54
[1e7dd4]55OrthogonalSummationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
[e920061]56 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \
[c6ca23]57 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp \
58 ../Fragmentation/Summation/OrthogonalSummation.hpp \
59 ../Fragmentation/Summation/OrthogonalSummation_impl.hpp
[1e7dd4]60OrthogonalSummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
61
[d699de]62SetValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
[e920061]63 ../Fragmentation/Summation/unittests/SetValueUnitTest.cpp \
64 ../Fragmentation/Summation/unittests/SetValueUnitTest.hpp \
65 ../Fragmentation/Summation/unittests/stubs/SetValueMap_Mock.hpp \
66 ../Fragmentation/Summation/unittests/stubs/SubsetMap_Mock.hpp
[d699de]67SetValueUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
[146c26d]68
[c508fea]69SetValueMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
[e920061]70 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \
71 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp
[c508fea]72SetValueMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
73
[2df580]74SubsetMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
[e920061]75 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp \
76 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp
77SubsetMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
[2df580]78
[c40e15d]79SummationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
80 ../Fragmentation/Summation/unittests/SummationUnitTest.cpp \
81 ../Fragmentation/Summation/unittests/SummationUnitTest.hpp \
82 ../Fragmentation/Summation/Summation.hpp \
83 ../Fragmentation/Summation/Summation_impl.hpp
84SummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
85
[2df580]86
[146c26d]87#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.