# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab FRAGMENTATIONSUMMATIONTESTSSOURCES = \ ../Fragmentation/Summation/unittests/IndexSetUnitTest.cpp \ ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \ ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \ ../Fragmentation/Summation/unittests/SetValueUnitTest.cpp \ ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \ ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp FRAGMENTATIONSUMMATIONTESTSHEADERS = \ ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp \ ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \ ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp \ ../Fragmentation/Summation/unittests/SetValueUnitTest.hpp \ ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp \ ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp FRAGMENTATIONSUMMATIONTESTS = \ IndexSetUnitTest \ IndexSetContainerUnitTest \ OrthogonalSummationUnitTest \ SetValueUnitTest \ SetValueMapUnitTest \ SubsetMapUnitTest TESTS += $(FRAGMENTATIONSUMMATIONTESTS) check_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS) noinst_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS) FRAGMENTATIONSUMMATIONLIBS = \ ../libMolecuilderFragmentationSummation.la \ ${CodePatterns_LIBS} \ $(BOOST_LIB) IndexSetUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Fragmentation/Summation/unittests/IndexSetUnitTest.cpp \ ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp IndexSetUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} IndexSetContainerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \ ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.hpp IndexSetContainerUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} OrthogonalSummationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \ ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp OrthogonalSummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} SetValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Fragmentation/Summation/unittests/SetValueUnitTest.cpp \ ../Fragmentation/Summation/unittests/SetValueUnitTest.hpp \ ../Fragmentation/Summation/unittests/stubs/SetValueMap_Mock.hpp \ ../Fragmentation/Summation/unittests/stubs/SubsetMap_Mock.hpp SetValueUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} SetValueMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \ ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp SetValueMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} SubsetMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp \ ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp SubsetMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} #AUTOMAKE_OPTIONS = parallel-tests