1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | POTENTIALSTESTSSOURCES = \
|
---|
5 | ../Potentials/unittests/CompoundPotentialUnitTest.cpp \
|
---|
6 | ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \
|
---|
7 | ../Potentials/unittests/SerializablePotentialUnitTest.cpp
|
---|
8 |
|
---|
9 | POTENTIALSTESTSHEADERS = \
|
---|
10 | ../Potentials/unittests/CompoundPotentialUnitTest.hpp \
|
---|
11 | ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp \
|
---|
12 | ../Potentials/unittests/SerializablePotentialUnitTest.hpp
|
---|
13 |
|
---|
14 | POTENTIALSTESTS = \
|
---|
15 | CompoundPotentialUnitTest \
|
---|
16 | PartialNucleiChargeFitterUnitTest \
|
---|
17 | SerializablePotentialUnitTest
|
---|
18 |
|
---|
19 | TESTS += $(POTENTIALSTESTS)
|
---|
20 | check_PROGRAMS += $(POTENTIALSTESTS)
|
---|
21 | noinst_PROGRAMS += $(POTENTIALSTESTS)
|
---|
22 |
|
---|
23 | POTENTIALSLIBS = \
|
---|
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 |
|
---|
30 | CompoundPotentialUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
31 | ../Potentials/unittests/CompoundPotentialUnitTest.cpp \
|
---|
32 | ../Potentials/unittests/CompoundPotentialUnitTest.hpp
|
---|
33 | CompoundPotentialUnitTest_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 |
|
---|
44 | PartialNucleiChargeFitterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
45 | ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \
|
---|
46 | ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp
|
---|
47 | PartialNucleiChargeFitterUnitTest_LDADD = \
|
---|
48 | ../libMolecuilderFragmentationSummation.la \
|
---|
49 | ${POTENTIALSLIBS}
|
---|
50 |
|
---|
51 | SerializablePotentialUnitTest_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
|
---|
56 | SerializablePotentialUnitTest_LDADD = ${POTENTIALSLIBS}
|
---|
57 |
|
---|
58 |
|
---|
59 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|