[fbf143] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | FRAGMENTATIONSETVALUESTESTSSOURCES = \
|
---|
[955051] | 5 | ../Fragmentation/Summation/SetValues/unittests/EigenvaluesUnitTest.cpp \
|
---|
[fbf143] | 6 | ../Fragmentation/Summation/SetValues/unittests/FragmentUnitTest.cpp \
|
---|
| 7 | ../Fragmentation/Summation/SetValues/unittests/HistogramUnitTest.cpp \
|
---|
| 8 | ../Fragmentation/Summation/SetValues/unittests/IndexedVectorsUnitTest.cpp \
|
---|
| 9 | ../Fragmentation/Summation/SetValues/unittests/SamplingGridPropertiesUnitTest.cpp \
|
---|
| 10 | ../Fragmentation/Summation/SetValues/unittests/SamplingGridUnitTest.cpp
|
---|
| 11 |
|
---|
| 12 | FRAGMENTATIONSETVALUESTESTSHEADERS = \
|
---|
[955051] | 13 | ../Fragmentation/Summation/SetValues/unittests/EigenvaluesUnitTest.hpp \
|
---|
[fbf143] | 14 | ../Fragmentation/Summation/SetValues/unittests/FragmentUnitTest.hpp \
|
---|
| 15 | ../Fragmentation/Summation/SetValues/unittests/HistogramUnitTest.hpp \
|
---|
| 16 | ../Fragmentation/Summation/SetValues/unittests/IndexedVectorsUnitTest.hpp \
|
---|
| 17 | ../Fragmentation/Summation/SetValues/unittests/SamplingGridPropertiesUnitTest.hpp \
|
---|
| 18 | ../Fragmentation/Summation/SetValues/unittests/SamplingGridUnitTest.hpp
|
---|
| 19 |
|
---|
| 20 | FRAGMENTATIONSETVALUESTESTS = \
|
---|
[955051] | 21 | EigenvaluesUnitTest \
|
---|
[fbf143] | 22 | FragmentUnitTest \
|
---|
| 23 | HistogramUnitTest \
|
---|
| 24 | IndexedVectorsUnitTest \
|
---|
| 25 | SamplingGridPropertiesUnitTest \
|
---|
| 26 | SamplingGridUnitTest
|
---|
| 27 |
|
---|
| 28 | TESTS += $(FRAGMENTATIONSETVALUESTESTS)
|
---|
| 29 | check_PROGRAMS += $(FRAGMENTATIONSETVALUESTESTS)
|
---|
| 30 | noinst_PROGRAMS += $(FRAGMENTATIONSETVALUESTESTS)
|
---|
| 31 |
|
---|
| 32 | FRAGMENTATIONSETVALUESLIBS = \
|
---|
[e9e86f] | 33 | libUnitTest.la \
|
---|
[748fc7] | 34 | ../libMolecuilder.la \
|
---|
[fbf143] | 35 | ../libMolecuilderFragmentationSetValues.la \
|
---|
| 36 | ${CodePatterns_LIBS} \
|
---|
| 37 | $(BOOST_LIB)
|
---|
| 38 |
|
---|
[e9e86f] | 39 | EigenvaluesUnitTest_SOURCES = \
|
---|
[955051] | 40 | ../Fragmentation/Summation/SetValues/unittests/EigenvaluesUnitTest.cpp \
|
---|
| 41 | ../Fragmentation/Summation/SetValues/unittests/EigenvaluesUnitTest.hpp
|
---|
| 42 | EigenvaluesUnitTest_LDADD = \
|
---|
| 43 | ${FRAGMENTATIONSETVALUESLIBS} \
|
---|
| 44 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
|
---|
| 45 |
|
---|
[e9e86f] | 46 | FragmentUnitTest_SOURCES = \
|
---|
[fbf143] | 47 | ../Fragmentation/Summation/SetValues/unittests/FragmentUnitTest.cpp \
|
---|
| 48 | ../Fragmentation/Summation/SetValues/unittests/FragmentUnitTest.hpp
|
---|
| 49 | FragmentUnitTest_LDADD = \
|
---|
| 50 | ${FRAGMENTATIONSETVALUESLIBS} \
|
---|
| 51 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
|
---|
| 52 |
|
---|
[e9e86f] | 53 | HistogramUnitTest_SOURCES = \
|
---|
[fbf143] | 54 | ../Fragmentation/Summation/SetValues/unittests/HistogramUnitTest.cpp \
|
---|
| 55 | ../Fragmentation/Summation/SetValues/unittests/HistogramUnitTest.hpp
|
---|
| 56 | HistogramUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS}
|
---|
| 57 |
|
---|
[e9e86f] | 58 | IndexedVectorsUnitTest_SOURCES = \
|
---|
[fbf143] | 59 | ../Fragmentation/Summation/SetValues/unittests/IndexedVectorsUnitTest.cpp \
|
---|
| 60 | ../Fragmentation/Summation/SetValues/unittests/IndexedVectorsUnitTest.hpp
|
---|
| 61 | IndexedVectorsUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS}
|
---|
| 62 |
|
---|
[e9e86f] | 63 | SamplingGridPropertiesUnitTest_SOURCES = \
|
---|
[fbf143] | 64 | ../Fragmentation/Summation/SetValues/unittests/SamplingGridPropertiesUnitTest.cpp \
|
---|
| 65 | ../Fragmentation/Summation/SetValues/unittests/SamplingGridPropertiesUnitTest.hpp
|
---|
| 66 | SamplingGridPropertiesUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS}
|
---|
| 67 |
|
---|
[e9e86f] | 68 | SamplingGridUnitTest_SOURCES = \
|
---|
[fbf143] | 69 | ../Fragmentation/Summation/SetValues/unittests/SamplingGridUnitTest.cpp \
|
---|
| 70 | ../Fragmentation/Summation/SetValues/unittests/SamplingGridUnitTest.hpp
|
---|
| 71 | SamplingGridUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS}
|
---|
| 72 |
|
---|
| 73 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|