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 |
|
---|
8 | FRAGMENTATIONEXPORTERSTESTSHEADERS = \
|
---|
9 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp \
|
---|
10 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp
|
---|
11 |
|
---|
12 | FRAGMENTATIONEXPORTERSTESTS = \
|
---|
13 | HydrogenPoolUnitTest \
|
---|
14 | SaturatedFragmentUnitTest
|
---|
15 |
|
---|
16 | TESTS += $(FRAGMENTATIONEXPORTERSTESTS)
|
---|
17 | check_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
|
---|
18 | noinst_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
|
---|
19 |
|
---|
20 | FRAGMENTATIONEXPORTERSLIBS = \
|
---|
21 | ../libMolecuilderFragmentation.la \
|
---|
22 | ${CodePatterns_LIBS} \
|
---|
23 | $(BOOST_LIB)
|
---|
24 |
|
---|
25 | HydrogenPoolUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
26 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
|
---|
27 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp
|
---|
28 | HydrogenPoolUnitTest_LDADD = \
|
---|
29 | ../libMolecuilderUI.la \
|
---|
30 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
31 |
|
---|
32 | SaturatedFragmentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
33 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
|
---|
34 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp
|
---|
35 | SaturatedFragmentUnitTest_LDADD = \
|
---|
36 | ../libMolecuilderUI.la \
|
---|
37 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
38 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
39 |
|
---|
40 |
|
---|
41 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|