source: src/Potentials/unittests/Makefile.am@ 91c409

Candidate_v1.7.0 stable
Last change on this file since 91c409 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
RevLine 
[6efcae]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4POTENTIALSTESTSSOURCES = \
[c4afdf3]5 ../Potentials/unittests/BindingModelUnitTest.cpp \
[154e88]6 ../Potentials/unittests/CompoundPotentialUnitTest.cpp \
[58fcbe5]7 ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \
[6efcae]8 ../Potentials/unittests/SerializablePotentialUnitTest.cpp
9
10POTENTIALSTESTSHEADERS = \
[c4afdf3]11 ../Potentials/unittests/BindingModelUnitTest.hpp \
[154e88]12 ../Potentials/unittests/CompoundPotentialUnitTest.hpp \
[58fcbe5]13 ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp \
[6efcae]14 ../Potentials/unittests/SerializablePotentialUnitTest.hpp
15
16POTENTIALSTESTS = \
[c4afdf3]17 BindingModelUnitTest \
[154e88]18 CompoundPotentialUnitTest \
[58fcbe5]19 PartialNucleiChargeFitterUnitTest \
[6efcae]20 SerializablePotentialUnitTest
21
22TESTS += $(POTENTIALSTESTS)
23check_PROGRAMS += $(POTENTIALSTESTS)
24noinst_PROGRAMS += $(POTENTIALSTESTS)
25
26POTENTIALSLIBS = \
[e9e86f]27 libUnitTest.la \
[748fc7]28 ../libMolecuilder.la \
[6efcae]29 ../libMolecuilderPotentials.la \
[4ecb2d]30 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
[6efcae]31 ${CodePatterns_LIBS} \
[58fcbe5]32 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
[6efcae]33 $(BOOST_LIB)
34
[c4afdf3]35BindingModelUnitTest_SOURCES = \
36 ../Potentials/unittests/BindingModelUnitTest.cpp \
37 ../Potentials/unittests/BindingModelUnitTest.hpp
38BindingModelUnitTest_LDADD = \
39 ${POTENTIALSLIBS} \
40 ../libMolecuilderFragmentation.la \
41 ../libMolecuilderFragmentation_getFromKeysetStub.la
42
[e9e86f]43CompoundPotentialUnitTest_SOURCES = \
[154e88]44 ../Potentials/unittests/CompoundPotentialUnitTest.cpp \
45 ../Potentials/unittests/CompoundPotentialUnitTest.hpp
46CompoundPotentialUnitTest_LDADD = \
[e9e86f]47 libUnitTest.la \
[154e88]48 ../libMolecuilderPotentials.la \
49 ../libMolecuilderFragmentation.la \
50 ../libMolecuilderFunctionApproximation.la \
[16227a]51 ../libMolecuilderFragmentationSummation.la \
[154e88]52 ../libMolecuilderFragmentation_getFromKeysetStub.la \
[0932c2]53 ../libMolecuilderRandomNumbers.la \
[4ecb2d]54 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
[154e88]55 ${CodePatterns_LIBS} \
[58fcbe5]56 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
[154e88]57 $(BOOST_LIB)
58
[e9e86f]59PartialNucleiChargeFitterUnitTest_SOURCES = \
[58fcbe5]60 ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \
61 ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp
62PartialNucleiChargeFitterUnitTest_LDADD = \
63 ../libMolecuilderFragmentationSummation.la \
64 ${POTENTIALSLIBS}
65
[e9e86f]66SerializablePotentialUnitTest_SOURCES = \
[6efcae]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
[4d4caf]73MOSTLYCLEANFILES += \
74 potential.csv \
75 residuum.csv \
76 solution.csv
[6efcae]77
78#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.