source: src/Parser/Parameters/unittests/Makefile.am@ 97dff0

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

DISTFIX: typo in header files.

  • Property mode set to 100644
File size: 2.2 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4
5PARSERPARAMETERSTESTSSOURCES = \
6 ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
7 ../Parser/Parameters/unittests/StringParameterUnitTest.cpp
8
9PARSERPARAMETERSTESTSHEADERS = \
10 ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
11 ../Parser/Parameters/unittests/StringParameterUnitTest.hpp
12
13PARSERPARAMETERSTESTS = \
14 ParameterStorageUnitTest \
15 StringParameterUnitTest
16
17TESTS += $(PARSERPARAMETERSTESTS)
18check_PROGRAMS += $(PARSERPARAMETERSTESTS)
19noinst_PROGRAMS += $(PARSERPARAMETERSTESTS)
20
21PARSERPARAMETERSLIBS = \
22 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
23 ${CodePatterns_LIBS} \
24 $(BOOST_THREAD_LDFLAGS) $(BOOST_THREAD_LIBS)
25
26
27ParameterStorageUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
28 ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
29 ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
30 ../Parser/Parameters/ParameterStorage.cpp \
31 ../Parser/Parameters/ParameterStorage.hpp \
32 ../Parameters/Parameter.hpp \
33 ../Parameters/Validators/DummyValidator.hpp \
34 ../Parameters/Validators/RangeValidator.hpp \
35 ../Parameters/Validators/RangeValidator_impl.hpp \
36 ../Parameters/Validators/Validator.hpp \
37 ../Parameters/Value.hpp \
38 ../Parameters/Value_impl.hpp \
39 ../Parameters/ValueInterface.hpp
40ParameterStorageUnitTest_LDADD = \
41 $(PARSERPARAMETERSLIBS)
42
43StringParameterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
44 ../Parser/Parameters/unittests/StringParameterUnitTest.cpp \
45 ../Parser/Parameters/unittests/StringParameterUnitTest.hpp \
46 ../Parameters/StreamOperators.hpp \
47 ../Parameters/Validators/DiscreteValidator.hpp \
48 ../Parameters/Validators/DiscreteValidator_impl.hpp \
49 ../Parameters/Validators/DummyValidator.hpp \
50 ../Parameters/Validators/RangeValidator.hpp \
51 ../Parameters/Validators/RangeValidator_impl.hpp \
52 ../Parameters/Validators/Validator.hpp \
53 ../Parameters/Value.hpp \
54 ../Parameters/Value_impl.hpp \
55 ../Parameters/Value_string.hpp \
56 ../Parameters/ValueInterface.hpp
57StringParameterUnitTest_LDADD = \
58 ../libMolecuilderParameters.la \
59 $(PARSERPARAMETERSLIBS)
60
61
62#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.