[146c26d] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | FRAGMENTATIONSUMMATIONTESTSSOURCES = \
|
---|
[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 |
|
---|
| 13 | FRAGMENTATIONSUMMATIONTESTSHEADERS = \
|
---|
[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 |
|
---|
| 22 | FRAGMENTATIONSUMMATIONTESTS = \
|
---|
[063fab] | 23 | IndexSetUnitTest \
|
---|
[2df580] | 24 | IndexSetContainerUnitTest \
|
---|
[1e7dd4] | 25 | OrthogonalSummationUnitTest \
|
---|
[d699de] | 26 | SetValueUnitTest \
|
---|
[c508fea] | 27 | SetValueMapUnitTest \
|
---|
[c40e15d] | 28 | SubsetMapUnitTest \
|
---|
| 29 | SummationUnitTest
|
---|
[146c26d] | 30 |
|
---|
| 31 | TESTS += $(FRAGMENTATIONSUMMATIONTESTS)
|
---|
| 32 | check_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS)
|
---|
| 33 | noinst_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS)
|
---|
| 34 |
|
---|
| 35 | FRAGMENTATIONSUMMATIONLIBS = \
|
---|
[e9e86f] | 36 | libUnitTest.la \
|
---|
[748fc7] | 37 | ../libMolecuilder.la \
|
---|
[e920061] | 38 | ../libMolecuilderFragmentationSummation.la \
|
---|
[146c26d] | 39 | ${CodePatterns_LIBS} \
|
---|
| 40 | $(BOOST_LIB)
|
---|
| 41 |
|
---|
| 42 |
|
---|
[e9e86f] | 43 | IndexSetUnitTest_SOURCES = \
|
---|
[e920061] | 44 | ../Fragmentation/Summation/unittests/IndexSetUnitTest.cpp \
|
---|
| 45 | ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp
|
---|
[146c26d] | 46 | IndexSetUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
| 47 |
|
---|
[e9e86f] | 48 | IndexSetContainerUnitTest_SOURCES = \
|
---|
[e920061] | 49 | ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \
|
---|
| 50 | ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.hpp
|
---|
[fb69e9] | 51 | IndexSetContainerUnitTest_LDADD = \
|
---|
| 52 | ../libMolecuilderFragmentation.la \
|
---|
[353326] | 53 | ../libMolecuilderFragmentation_KeysetsContainer.la \
|
---|
[fb69e9] | 54 | ../libMolecuilderHelpers.la \
|
---|
| 55 | ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
[146c26d] | 56 |
|
---|
[e9e86f] | 57 | OrthogonalSummationUnitTest_SOURCES = \
|
---|
[e920061] | 58 | ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \
|
---|
[c6ca23] | 59 | ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp \
|
---|
| 60 | ../Fragmentation/Summation/OrthogonalSummation.hpp \
|
---|
| 61 | ../Fragmentation/Summation/OrthogonalSummation_impl.hpp
|
---|
[1e7dd4] | 62 | OrthogonalSummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
| 63 |
|
---|
[e9e86f] | 64 | SetValueUnitTest_SOURCES = \
|
---|
[e920061] | 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
|
---|
[d699de] | 69 | SetValueUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
[146c26d] | 70 |
|
---|
[e9e86f] | 71 | SetValueMapUnitTest_SOURCES = \
|
---|
[e920061] | 72 | ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \
|
---|
| 73 | ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp
|
---|
[c508fea] | 74 | SetValueMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
| 75 |
|
---|
[e9e86f] | 76 | SubsetMapUnitTest_SOURCES = \
|
---|
[e920061] | 77 | ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp \
|
---|
| 78 | ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp
|
---|
| 79 | SubsetMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
[2df580] | 80 |
|
---|
[e9e86f] | 81 | SummationUnitTest_SOURCES = \
|
---|
[c40e15d] | 82 | ../Fragmentation/Summation/unittests/SummationUnitTest.cpp \
|
---|
| 83 | ../Fragmentation/Summation/unittests/SummationUnitTest.hpp \
|
---|
| 84 | ../Fragmentation/Summation/Summation.hpp \
|
---|
| 85 | ../Fragmentation/Summation/Summation_impl.hpp
|
---|
| 86 | SummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
| 87 |
|
---|
[2df580] | 88 |
|
---|
[146c26d] | 89 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|