source: src/Potentials/unittests/Makefile.am

stable v1.7.0
Last change on this file was c4afdf3, checked in by Frederik Heber <frederik.heber@…>, 4 years ago

Extended BindingModel by comparators.

  • this allows placing them in sorted STL containers.
  • TEST: Added unit test.
  • Property mode set to 100644
File size: 2.7 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4POTENTIALSTESTSSOURCES = \
5 ../Potentials/unittests/BindingModelUnitTest.cpp \
6 ../Potentials/unittests/CompoundPotentialUnitTest.cpp \
7 ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \
8 ../Potentials/unittests/SerializablePotentialUnitTest.cpp
9
10POTENTIALSTESTSHEADERS = \
11 ../Potentials/unittests/BindingModelUnitTest.hpp \
12 ../Potentials/unittests/CompoundPotentialUnitTest.hpp \
13 ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp \
14 ../Potentials/unittests/SerializablePotentialUnitTest.hpp
15
16POTENTIALSTESTS = \
17 BindingModelUnitTest \
18 CompoundPotentialUnitTest \
19 PartialNucleiChargeFitterUnitTest \
20 SerializablePotentialUnitTest
21
22TESTS += $(POTENTIALSTESTS)
23check_PROGRAMS += $(POTENTIALSTESTS)
24noinst_PROGRAMS += $(POTENTIALSTESTS)
25
26POTENTIALSLIBS = \
27 libUnitTest.la \
28 ../libMolecuilder.la \
29 ../libMolecuilderPotentials.la \
30 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
31 ${CodePatterns_LIBS} \
32 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
33 $(BOOST_LIB)
34
35BindingModelUnitTest_SOURCES = \
36 ../Potentials/unittests/BindingModelUnitTest.cpp \
37 ../Potentials/unittests/BindingModelUnitTest.hpp
38BindingModelUnitTest_LDADD = \
39 ${POTENTIALSLIBS} \
40 ../libMolecuilderFragmentation.la \
41 ../libMolecuilderFragmentation_getFromKeysetStub.la
42
43CompoundPotentialUnitTest_SOURCES = \
44 ../Potentials/unittests/CompoundPotentialUnitTest.cpp \
45 ../Potentials/unittests/CompoundPotentialUnitTest.hpp
46CompoundPotentialUnitTest_LDADD = \
47 libUnitTest.la \
48 ../libMolecuilderPotentials.la \
49 ../libMolecuilderFragmentation.la \
50 ../libMolecuilderFunctionApproximation.la \
51 ../libMolecuilderFragmentationSummation.la \
52 ../libMolecuilderFragmentation_getFromKeysetStub.la \
53 ../libMolecuilderRandomNumbers.la \
54 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
55 ${CodePatterns_LIBS} \
56 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
57 $(BOOST_LIB)
58
59PartialNucleiChargeFitterUnitTest_SOURCES = \
60 ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \
61 ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp
62PartialNucleiChargeFitterUnitTest_LDADD = \
63 ../libMolecuilderFragmentationSummation.la \
64 ${POTENTIALSLIBS}
65
66SerializablePotentialUnitTest_SOURCES = \
67 ../Potentials/unittests/SerializablePotentialUnitTest.cpp \
68 ../Potentials/unittests/SerializablePotentialUnitTest.hpp \
69 ../Potentials/unittests/stubs/SerializablePotentialMock.cpp \
70 ../Potentials/unittests/stubs/SerializablePotentialMock.hpp
71SerializablePotentialUnitTest_LDADD = ${POTENTIALSLIBS}
72
73MOSTLYCLEANFILES += \
74 potential.csv \
75 residuum.csv \
76 solution.csv
77
78#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.