source: src/Fragmentation/Exporters/unittests/Makefile.am@ ff4fff9

CombiningParticlePotentialParsing
Last change on this file since ff4fff9 was 0241c5, checked in by Frederik Heber <heber@…>, 10 years ago

Trimmed down SphericalPointDistribution to what is needed at the moment.

  • Property mode set to 100644
File size: 2.0 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4FRAGMENTATIONEXPORTERSSOURCES = \
5 ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
6 ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
7 ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.cpp
8
9FRAGMENTATIONEXPORTERSTESTSHEADERS = \
10 ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp \
11 ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp \
12 ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.hpp
13
14FRAGMENTATIONEXPORTERSTESTS = \
15 HydrogenPoolUnitTest \
16 SaturatedFragmentUnitTest \
17 SaturationDistanceMaximizerUnitTest
18
19TESTS += $(FRAGMENTATIONEXPORTERSTESTS)
20XFAIL_TESTS += SphericalPointDistributionUnitTest
21check_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
22noinst_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
23
24FRAGMENTATIONEXPORTERSLIBS = \
25 libUnitTest.la \
26 ../libMolecuilder.la \
27 ../libMolecuilderFragmentation.la \
28 ${CodePatterns_LIBS} \
29 $(BOOST_LIB)
30
31HydrogenPoolUnitTest_SOURCES = \
32 ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
33 ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp
34HydrogenPoolUnitTest_LDADD = \
35 ../libMolecuilderUI.la \
36 ${FRAGMENTATIONEXPORTERSLIBS}
37
38SaturatedFragmentUnitTest_SOURCES = \
39 ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
40 ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp
41SaturatedFragmentUnitTest_LDADD = \
42 ../libMolecuilderUI.la \
43 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
44 ${FRAGMENTATIONEXPORTERSLIBS}
45
46SaturationDistanceMaximizerUnitTest_SOURCES = \
47 ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.hpp \
48 ../Fragmentation/Exporters/unittests/stubs/SaturatedBondStub.cpp
49SaturationDistanceMaximizerUnitTest_LDADD = \
50 ../libMolecuilderUI.la \
51 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
52 ${FRAGMENTATIONEXPORTERSLIBS}
53
54
55#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.