source: src/Fragmentation/Exporters/unittests/Makefile.am@ 11cc05

Last change on this file since 11cc05 was 11cc05, checked in by Frederik Heber <heber@…>, 11 years ago

Added unit tests for SphericalPointDistribution.

  • Property mode set to 100644
File size: 2.1 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/SphericalPointDistributionUnitTest.cpp
8
9FRAGMENTATIONEXPORTERSTESTSHEADERS = \
10 ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp \
11 ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp \
12 ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.hpp
13
14FRAGMENTATIONEXPORTERSTESTS = \
15 HydrogenPoolUnitTest \
16 SaturatedFragmentUnitTest \
17 SphericalPointDistributionUnitTest
18
19TESTS += $(FRAGMENTATIONEXPORTERSTESTS)
20XFAIL_TESTS += SphericalPointDistributionUnitTest
21check_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
22noinst_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
23
24FRAGMENTATIONEXPORTERSLIBS = \
25 ../libMolecuilderFragmentation.la \
26 ${CodePatterns_LIBS} \
27 $(BOOST_LIB)
28
29HydrogenPoolUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
30 ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
31 ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp
32HydrogenPoolUnitTest_LDADD = \
33 ../libMolecuilderUI.la \
34 ${FRAGMENTATIONEXPORTERSLIBS}
35
36SaturatedFragmentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
37 ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
38 ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp
39SaturatedFragmentUnitTest_LDADD = \
40 ../libMolecuilderUI.la \
41 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
42 ${FRAGMENTATIONEXPORTERSLIBS}
43
44SphericalPointDistributionUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
45 ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.cpp \
46 ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.hpp
47SphericalPointDistributionUnitTest_LDADD = \
48 ../libMolecuilderUI.la \
49 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
50 ${FRAGMENTATIONEXPORTERSLIBS}
51
52
53#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.