| 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
|---|
| 2 | # Also indentation by a single tab
|
|---|
| 3 |
|
|---|
| 4 | FRAGMENTATIONEXPORTERSSOURCES = \
|
|---|
| 5 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
|
|---|
| 6 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
|
|---|
| 7 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.cpp
|
|---|
| 8 |
|
|---|
| 9 | FRAGMENTATIONEXPORTERSTESTSHEADERS = \
|
|---|
| 10 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp \
|
|---|
| 11 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp \
|
|---|
| 12 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.hpp
|
|---|
| 13 |
|
|---|
| 14 | FRAGMENTATIONEXPORTERSTESTS = \
|
|---|
| 15 | HydrogenPoolUnitTest \
|
|---|
| 16 | SaturatedFragmentUnitTest \
|
|---|
| 17 | SphericalPointDistributionUnitTest
|
|---|
| 18 |
|
|---|
| 19 | TESTS += $(FRAGMENTATIONEXPORTERSTESTS)
|
|---|
| 20 | XFAIL_TESTS += SphericalPointDistributionUnitTest
|
|---|
| 21 | check_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
|
|---|
| 22 | noinst_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
|
|---|
| 23 |
|
|---|
| 24 | FRAGMENTATIONEXPORTERSLIBS = \
|
|---|
| 25 | ../libMolecuilderFragmentation.la \
|
|---|
| 26 | ${CodePatterns_LIBS} \
|
|---|
| 27 | $(BOOST_LIB)
|
|---|
| 28 |
|
|---|
| 29 | HydrogenPoolUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 30 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
|
|---|
| 31 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp
|
|---|
| 32 | HydrogenPoolUnitTest_LDADD = \
|
|---|
| 33 | ../libMolecuilderUI.la \
|
|---|
| 34 | ${FRAGMENTATIONEXPORTERSLIBS}
|
|---|
| 35 |
|
|---|
| 36 | SaturatedFragmentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 37 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
|
|---|
| 38 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp
|
|---|
| 39 | SaturatedFragmentUnitTest_LDADD = \
|
|---|
| 40 | ../libMolecuilderUI.la \
|
|---|
| 41 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
|---|
| 42 | ${FRAGMENTATIONEXPORTERSLIBS}
|
|---|
| 43 |
|
|---|
| 44 | SphericalPointDistributionUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 45 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.cpp \
|
|---|
| 46 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.hpp
|
|---|
| 47 | SphericalPointDistributionUnitTest_LDADD = \
|
|---|
| 48 | ../libMolecuilderUI.la \
|
|---|
| 49 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
|---|
| 50 | ${FRAGMENTATIONEXPORTERSLIBS}
|
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|