source: src/Potentials/unittests/Makefile.am@ aadea2

Last change on this file since aadea2 was 4d4caf, checked in by Frederik Heber <heber@…>, 12 years ago

DISTFIX: Did not delete csv files PartialNucleiChargeFitterUnitTest created.

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