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