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