| 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
|---|
| 2 | # Also indentation by a single tab
|
|---|
| 3 |
|
|---|
| 4 | FRAGMENTATIONSUMMATIONTESTSSOURCES = \
|
|---|
| 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 |
|
|---|
| 13 | FRAGMENTATIONSUMMATIONTESTSHEADERS = \
|
|---|
| 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 |
|
|---|
| 22 | FRAGMENTATIONSUMMATIONTESTS = \
|
|---|
| 23 | IndexSetUnitTest \
|
|---|
| 24 | IndexSetContainerUnitTest \
|
|---|
| 25 | OrthogonalSummationUnitTest \
|
|---|
| 26 | SetValueUnitTest \
|
|---|
| 27 | SetValueMapUnitTest \
|
|---|
| 28 | SubsetMapUnitTest \
|
|---|
| 29 | SummationUnitTest
|
|---|
| 30 |
|
|---|
| 31 | TESTS += $(FRAGMENTATIONSUMMATIONTESTS)
|
|---|
| 32 | check_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS)
|
|---|
| 33 | noinst_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS)
|
|---|
| 34 |
|
|---|
| 35 | FRAGMENTATIONSUMMATIONLIBS = \
|
|---|
| 36 | ../libMolecuilderFragmentationSummation.la \
|
|---|
| 37 | ${CodePatterns_LIBS} \
|
|---|
| 38 | $(BOOST_LIB)
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 | IndexSetUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 42 | ../Fragmentation/Summation/unittests/IndexSetUnitTest.cpp \
|
|---|
| 43 | ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp
|
|---|
| 44 | IndexSetUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
|---|
| 45 |
|
|---|
| 46 | IndexSetContainerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 47 | ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \
|
|---|
| 48 | ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.hpp
|
|---|
| 49 | IndexSetContainerUnitTest_LDADD = \
|
|---|
| 50 | ../libMolecuilderFragmentation.la \
|
|---|
| 51 | ../libMolecuilderFragmentation_KeysetsContainer.la \
|
|---|
| 52 | ../libMolecuilderHelpers.la \
|
|---|
| 53 | ${FRAGMENTATIONSUMMATIONLIBS}
|
|---|
| 54 |
|
|---|
| 55 | OrthogonalSummationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 56 | ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \
|
|---|
| 57 | ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp \
|
|---|
| 58 | ../Fragmentation/Summation/OrthogonalSummation.hpp \
|
|---|
| 59 | ../Fragmentation/Summation/OrthogonalSummation_impl.hpp
|
|---|
| 60 | OrthogonalSummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
|---|
| 61 |
|
|---|
| 62 | SetValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 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
|
|---|
| 67 | SetValueUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
|---|
| 68 |
|
|---|
| 69 | SetValueMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 70 | ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \
|
|---|
| 71 | ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp
|
|---|
| 72 | SetValueMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
|---|
| 73 |
|
|---|
| 74 | SubsetMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 75 | ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp \
|
|---|
| 76 | ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp
|
|---|
| 77 | SubsetMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
|---|
| 78 |
|
|---|
| 79 | SummationUnitTest_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
|
|---|
| 84 | SummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
|---|
| 85 |
|
|---|
| 86 |
|
|---|
| 87 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|