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