source: src/Fragmentation/Exporters/unittests/Makefile.am@ 97dff0

Last change on this file since 97dff0 was c39675, checked in by Frederik Heber <heber@…>, 12 years ago

Added saturate() to SaturatedFragment.

  • basically, this is AddHydrogenReplacementAtom() but stripped down a bit as we use hydrogens from the pool and as atoms for the fragment need not be copied anymore, we don't need all the father mambo jumbo.
  • SaturatedFragment additionally now needs to know about how hydrogens are treated and whether we actually saturate.
  • SaturatedFragmentUnitTest requires libLinearAlgebra.
  • Property mode set to 100644
File size: 1.5 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
8FRAGMENTATIONEXPORTERSTESTSHEADERS = \
9 ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp \
10 ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp
11
12FRAGMENTATIONEXPORTERSTESTS = \
13 HydrogenPoolUnitTest \
14 SaturatedFragmentUnitTest
15
16TESTS += $(FRAGMENTATIONEXPORTERSTESTS)
17check_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
18noinst_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
19
20FRAGMENTATIONEXPORTERSLIBS = \
21 ../libMolecuilderFragmentation.la \
22 ${CodePatterns_LIBS} \
23 $(BOOST_LIB)
24
25HydrogenPoolUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
26 ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
27 ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp
28HydrogenPoolUnitTest_LDADD = \
29 ../libMolecuilderUI.la \
30 ${FRAGMENTATIONEXPORTERSLIBS}
31
32SaturatedFragmentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
33 ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
34 ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp
35SaturatedFragmentUnitTest_LDADD = \
36 ../libMolecuilderUI.la \
37 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
38 ${FRAGMENTATIONEXPORTERSLIBS}
39
40
41#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.