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/ContinuousValueUnitTest.cpp \
|
---|
7 | ../Parser/Parameters/unittests/ContinuousParameterUnitTest.cpp \
|
---|
8 | ../Parser/Parameters/unittests/DiscreteValueUnitTest.cpp \
|
---|
9 | ../Parser/Parameters/unittests/DiscreteParameterUnitTest.cpp \
|
---|
10 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp
|
---|
11 |
|
---|
12 | PARSERPARAMETERSTESTSHEADERS = \
|
---|
13 | ../Parser/Parameters/unittests/ContinuousValueUnitTest.hpp \
|
---|
14 | ../Parser/Parameters/unittests/ContinuousParameterUnitTest.hpp \
|
---|
15 | ../Parser/Parameters/unittests/DiscreteValueUnitTest.hpp \
|
---|
16 | ../Parser/Parameters/unittests/DiscreteParameterUnitTest.hpp \
|
---|
17 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp
|
---|
18 |
|
---|
19 | PARSERPARAMETERSTESTS = \
|
---|
20 | ContinuousValueUnitTest \
|
---|
21 | ContinuousParameterUnitTest \
|
---|
22 | DiscreteValueUnitTest \
|
---|
23 | DiscreteParameterUnitTest \
|
---|
24 | ParameterStorageUnitTest
|
---|
25 |
|
---|
26 | TESTS += $(PARSERPARAMETERSTESTS)
|
---|
27 | check_PROGRAMS += $(PARSERPARAMETERSTESTS)
|
---|
28 | noinst_PROGRAMS += $(PARSERPARAMETERSTESTS)
|
---|
29 |
|
---|
30 | PARSERPARAMETERSLIBS =
|
---|
31 |
|
---|
32 |
|
---|
33 | ContinuousValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
34 | ../Parser/Parameters/unittests/ContinuousValueUnitTest.cpp \
|
---|
35 | ../Parser/Parameters/unittests/ContinuousValueUnitTest.hpp \
|
---|
36 | ../Parser/Parameters/ContinuousValue.hpp \
|
---|
37 | ../Parser/Parameters/ContinuousValue_impl.hpp \
|
---|
38 | ../Parser/Parameters/ValueInterface.hpp
|
---|
39 | ContinuousValueUnitTest_LDADD = \
|
---|
40 | $(PARSERPARAMETERSLIBS)
|
---|
41 |
|
---|
42 | ContinuousParameterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
43 | ../Parser/Parameters/unittests/ContinuousParameterUnitTest.cpp \
|
---|
44 | ../Parser/Parameters/unittests/ContinuousParameterUnitTest.hpp \
|
---|
45 | ../Parser/Parameters/ContinuousValue.hpp \
|
---|
46 | ../Parser/Parameters/ContinuousValue_impl.hpp \
|
---|
47 | ../Parser/Parameters/ContinuousParameter.hpp \
|
---|
48 | ../Parser/Parameters/ContinuousParameter_impl.hpp \
|
---|
49 | ../Parser/Parameters/Parameter.hpp \
|
---|
50 | ../Parser/Parameters/ValueInterface.hpp
|
---|
51 | ContinuousParameterUnitTest_LDADD = \
|
---|
52 | $(PARSERPARAMETERSLIBS)
|
---|
53 |
|
---|
54 | DiscreteValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
55 | ../Parser/Parameters/unittests/DiscreteValueUnitTest.cpp \
|
---|
56 | ../Parser/Parameters/unittests/DiscreteValueUnitTest.hpp \
|
---|
57 | ../Parser/Parameters/DiscreteValue.hpp \
|
---|
58 | ../Parser/Parameters/DiscreteValue_impl.hpp \
|
---|
59 | ../Parser/Parameters/ValueInterface.hpp
|
---|
60 | DiscreteValueUnitTest_LDADD = \
|
---|
61 | $(PARSERPARAMETERSLIBS)
|
---|
62 |
|
---|
63 | DiscreteParameterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
64 | ../Parser/Parameters/unittests/DiscreteParameterUnitTest.cpp \
|
---|
65 | ../Parser/Parameters/unittests/DiscreteParameterUnitTest.hpp \
|
---|
66 | ../Parser/Parameters/DiscreteValue.hpp \
|
---|
67 | ../Parser/Parameters/DiscreteValue_impl.hpp \
|
---|
68 | ../Parser/Parameters/DiscreteParameter.hpp \
|
---|
69 | ../Parser/Parameters/DiscreteParameter_impl.hpp \
|
---|
70 | ../Parser/Parameters/Parameter.hpp \
|
---|
71 | ../Parser/Parameters/ValueInterface.hpp
|
---|
72 | DiscreteParameterUnitTest_LDADD = \
|
---|
73 | $(PARSERPARAMETERSLIBS)
|
---|
74 |
|
---|
75 | ParameterStorageUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
76 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
|
---|
77 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
|
---|
78 | ../Parser/Parameters/ParameterStorage.cpp \
|
---|
79 | ../Parser/Parameters/ParameterStorage.hpp \
|
---|
80 | ../Parser/Parameters/ContinuousValue.hpp \
|
---|
81 | ../Parser/Parameters/ContinuousValue_impl.hpp \
|
---|
82 | ../Parser/Parameters/DiscreteValue.hpp \
|
---|
83 | ../Parser/Parameters/DiscreteValue_impl.hpp \
|
---|
84 | ../Parser/Parameters/ValueInterface.hpp
|
---|
85 | ParameterStorageUnitTest_LDADD = \
|
---|
86 | $(CodePatterns_LIBS) \
|
---|
87 | $(PARSERPARAMETERSLIBS)
|
---|
88 |
|
---|
89 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|