[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 \
|
---|
| 10 | ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp
|
---|
[146c26d] | 11 |
|
---|
| 12 | FRAGMENTATIONSUMMATIONTESTSHEADERS = \
|
---|
[e920061] | 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
|
---|
[146c26d] | 19 |
|
---|
| 20 | FRAGMENTATIONSUMMATIONTESTS = \
|
---|
[063fab] | 21 | IndexSetUnitTest \
|
---|
[2df580] | 22 | IndexSetContainerUnitTest \
|
---|
[1e7dd4] | 23 | OrthogonalSummationUnitTest \
|
---|
[d699de] | 24 | SetValueUnitTest \
|
---|
[c508fea] | 25 | SetValueMapUnitTest \
|
---|
[2df580] | 26 | SubsetMapUnitTest
|
---|
[146c26d] | 27 |
|
---|
| 28 | TESTS += $(FRAGMENTATIONSUMMATIONTESTS)
|
---|
| 29 | check_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS)
|
---|
| 30 | noinst_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS)
|
---|
| 31 |
|
---|
| 32 | FRAGMENTATIONSUMMATIONLIBS = \
|
---|
[e920061] | 33 | ../libMolecuilderFragmentationSummation.la \
|
---|
[146c26d] | 34 | ${CodePatterns_LIBS} \
|
---|
| 35 | $(BOOST_LIB)
|
---|
| 36 |
|
---|
| 37 |
|
---|
| 38 | IndexSetUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
[e920061] | 39 | ../Fragmentation/Summation/unittests/IndexSetUnitTest.cpp \
|
---|
| 40 | ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp
|
---|
[146c26d] | 41 | IndexSetUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
| 42 |
|
---|
[063fab] | 43 | IndexSetContainerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
[e920061] | 44 | ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \
|
---|
| 45 | ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.hpp
|
---|
[063fab] | 46 | IndexSetContainerUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
[146c26d] | 47 |
|
---|
[1e7dd4] | 48 | OrthogonalSummationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
[e920061] | 49 | ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \
|
---|
| 50 | ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp
|
---|
[1e7dd4] | 51 | OrthogonalSummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
| 52 |
|
---|
[d699de] | 53 | SetValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
[e920061] | 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
|
---|
[d699de] | 58 | SetValueUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
[146c26d] | 59 |
|
---|
[c508fea] | 60 | SetValueMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
[e920061] | 61 | ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \
|
---|
| 62 | ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp
|
---|
[c508fea] | 63 | SetValueMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
| 64 |
|
---|
[2df580] | 65 | SubsetMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
[e920061] | 66 | ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp \
|
---|
| 67 | ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp
|
---|
| 68 | SubsetMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS}
|
---|
[2df580] | 69 |
|
---|
| 70 |
|
---|
[146c26d] | 71 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|