1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | FRAGMENTATIONSETVALUESTESTSSOURCES = \
|
---|
5 | ../Fragmentation/SetValues/unittests/FragmentUnitTest.cpp \
|
---|
6 | ../Fragmentation/SetValues/unittests/HistogramUnitTest.cpp \
|
---|
7 | ../Fragmentation/SetValues/unittests/IndexedVectorsUnitTest.cpp
|
---|
8 |
|
---|
9 | FRAGMENTATIONSETVALUESTESTSHEADERS = \
|
---|
10 | ../Fragmentation/SetValues/unittests/FragmentUnitTest.hpp \
|
---|
11 | ../Fragmentation/SetValues/unittests/HistogramUnitTest.hpp \
|
---|
12 | ../Fragmentation/SetValues/unittests/IndexedVectorsUnitTest.hpp
|
---|
13 |
|
---|
14 | FRAGMENTATIONSETVALUESTESTS = \
|
---|
15 | FragmentUnitTest \
|
---|
16 | HistogramUnitTest \
|
---|
17 | IndexedVectorsUnitTest
|
---|
18 |
|
---|
19 | TESTS += $(FRAGMENTATIONSETVALUESTESTS)
|
---|
20 | check_PROGRAMS += $(FRAGMENTATIONSETVALUESTESTS)
|
---|
21 | noinst_PROGRAMS += $(FRAGMENTATIONSETVALUESTESTS)
|
---|
22 |
|
---|
23 | FRAGMENTATIONSETVALUESLIBS = \
|
---|
24 | ../libMolecuilderFragmentationSetValues.la \
|
---|
25 | ${CodePatterns_LIBS} \
|
---|
26 | $(BOOST_LIB)
|
---|
27 |
|
---|
28 | FragmentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
29 | ../Fragmentation/SetValues/unittests/FragmentUnitTest.cpp \
|
---|
30 | ../Fragmentation/SetValues/unittests/FragmentUnitTest.hpp
|
---|
31 | FragmentUnitTest_LDADD = \
|
---|
32 | ${FRAGMENTATIONSETVALUESLIBS} \
|
---|
33 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
|
---|
34 |
|
---|
35 |
|
---|
36 | HistogramUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
37 | ../Fragmentation/SetValues/unittests/HistogramUnitTest.cpp \
|
---|
38 | ../Fragmentation/SetValues/unittests/HistogramUnitTest.hpp
|
---|
39 | HistogramUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS}
|
---|
40 |
|
---|
41 | IndexedVectorsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
42 | ../Fragmentation/SetValues/unittests/IndexedVectorsUnitTest.cpp \
|
---|
43 | ../Fragmentation/SetValues/unittests/IndexedVectorsUnitTest.hpp
|
---|
44 | IndexedVectorsUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS}
|
---|
45 |
|
---|
46 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|