[c3df23] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | FRAGMENTATIONEXPORTERSSOURCES = \
|
---|
[7d5fcd] | 5 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
|
---|
[11cc05] | 6 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
|
---|
| 7 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.cpp
|
---|
[c3df23] | 8 |
|
---|
| 9 | FRAGMENTATIONEXPORTERSTESTSHEADERS = \
|
---|
[7d5fcd] | 10 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp \
|
---|
[11cc05] | 11 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp \
|
---|
| 12 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.hpp
|
---|
[c3df23] | 13 |
|
---|
| 14 | FRAGMENTATIONEXPORTERSTESTS = \
|
---|
[7d5fcd] | 15 | HydrogenPoolUnitTest \
|
---|
[11cc05] | 16 | SaturatedFragmentUnitTest \
|
---|
| 17 | SphericalPointDistributionUnitTest
|
---|
[c3df23] | 18 |
|
---|
| 19 | TESTS += $(FRAGMENTATIONEXPORTERSTESTS)
|
---|
[11cc05] | 20 | XFAIL_TESTS += SphericalPointDistributionUnitTest
|
---|
[c3df23] | 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 = \
|
---|
[c39675] | 33 | ../libMolecuilderUI.la \
|
---|
| 34 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
[7d5fcd] | 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 = \
|
---|
[c39675] | 40 | ../libMolecuilderUI.la \
|
---|
| 41 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 42 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
[11cc05] | 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 |
|
---|
[c3df23] | 52 |
|
---|
| 53 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|