| 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/SaturationDistanceMaximizerUnitTest.cpp \
|
|---|
| 8 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.cpp
|
|---|
| 9 |
|
|---|
| 10 | FRAGMENTATIONEXPORTERSTESTSHEADERS = \
|
|---|
| 11 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp \
|
|---|
| 12 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp \
|
|---|
| 13 | ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.hpp \
|
|---|
| 14 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.hpp \
|
|---|
| 15 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest_assistant.hpp
|
|---|
| 16 |
|
|---|
| 17 | FRAGMENTATIONEXPORTERSTESTS = \
|
|---|
| 18 | HydrogenPoolUnitTest \
|
|---|
| 19 | SaturatedFragmentUnitTest \
|
|---|
| 20 | SaturationDistanceMaximizerUnitTest \
|
|---|
| 21 | SphericalPointDistributionUnitTest
|
|---|
| 22 |
|
|---|
| 23 | TESTS += $(FRAGMENTATIONEXPORTERSTESTS)
|
|---|
| 24 | check_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
|
|---|
| 25 | noinst_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
|
|---|
| 26 |
|
|---|
| 27 | FRAGMENTATIONEXPORTERSLIBS = \
|
|---|
| 28 | libUnitTest.la \
|
|---|
| 29 | ../libMolecuilder.la \
|
|---|
| 30 | ../libMolecuilderFragmentation.la \
|
|---|
| 31 | ${CodePatterns_LIBS} \
|
|---|
| 32 | $(BOOST_LIB)
|
|---|
| 33 |
|
|---|
| 34 | HydrogenPoolUnitTest_SOURCES = \
|
|---|
| 35 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
|
|---|
| 36 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp
|
|---|
| 37 | HydrogenPoolUnitTest_LDADD = \
|
|---|
| 38 | ../libMolecuilderUI.la \
|
|---|
| 39 | ${FRAGMENTATIONEXPORTERSLIBS}
|
|---|
| 40 |
|
|---|
| 41 | SaturatedFragmentUnitTest_SOURCES = \
|
|---|
| 42 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
|
|---|
| 43 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp
|
|---|
| 44 | SaturatedFragmentUnitTest_LDADD = \
|
|---|
| 45 | ../libMolecuilderUI.la \
|
|---|
| 46 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
|---|
| 47 | ${FRAGMENTATIONEXPORTERSLIBS}
|
|---|
| 48 |
|
|---|
| 49 | SaturationDistanceMaximizerUnitTest_SOURCES = \
|
|---|
| 50 | ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.cpp \
|
|---|
| 51 | ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.hpp \
|
|---|
| 52 | ../Fragmentation/Exporters/unittests/stubs/SaturatedBondStub.cpp
|
|---|
| 53 | SaturationDistanceMaximizerUnitTest_LDADD = \
|
|---|
| 54 | ../libMolecuilderUI.la \
|
|---|
| 55 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
|---|
| 56 | ${FRAGMENTATIONEXPORTERSLIBS}
|
|---|
| 57 |
|
|---|
| 58 | SphericalPointDistributionUnitTest_SOURCES = \
|
|---|
| 59 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.cpp \
|
|---|
| 60 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.hpp
|
|---|
| 61 | SphericalPointDistributionUnitTest_LDADD = \
|
|---|
| 62 | ../libMolecuilderUI.la \
|
|---|
| 63 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
|---|
| 64 | ${FRAGMENTATIONEXPORTERSLIBS}
|
|---|
| 65 |
|
|---|
| 66 |
|
|---|
| 67 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|