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