1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 |
|
---|
5 | PARAMETERSTESTSSOURCES = \
|
---|
6 | ../Parameters/unittests/ContinuousValueTest.cpp \
|
---|
7 | ../Parameters/unittests/ContinuousParameterTest.cpp \
|
---|
8 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
---|
9 | ../Parameters/unittests/DiscreteParameterTest.cpp
|
---|
10 |
|
---|
11 | PARAMETERSTESTSHEADERS = \
|
---|
12 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
---|
13 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
---|
14 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
15 | ../Parameters/unittests/DiscreteParameterTest.hpp
|
---|
16 |
|
---|
17 | PARAMETERSTESTS = \
|
---|
18 | ContinuousValueTest \
|
---|
19 | ContinuousParameterTest \
|
---|
20 | DiscreteValueTest \
|
---|
21 | DiscreteParameterTest
|
---|
22 |
|
---|
23 | TESTS += $(PARAMETERSTESTS)
|
---|
24 | check_PROGRAMS += $(PARAMETERSTESTS)
|
---|
25 | noinst_PROGRAMS += $(PARAMETERSTESTS)
|
---|
26 |
|
---|
27 | PARAMETERSLIBS =
|
---|
28 |
|
---|
29 |
|
---|
30 | ContinuousValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
31 | ../Parameters/unittests/ContinuousValueTest.cpp \
|
---|
32 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
---|
33 | ../Parameters/ContinuousValue.hpp \
|
---|
34 | ../Parameters/ContinuousValue_impl.hpp \
|
---|
35 | ../Parameters/ValueInterface.hpp
|
---|
36 | ContinuousValueTest_LDADD = \
|
---|
37 | $(PARAMETERSLIBS)
|
---|
38 |
|
---|
39 | ContinuousParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
40 | ../Parameters/unittests/ContinuousParameterTest.cpp \
|
---|
41 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
---|
42 | ../Parameters/ContinuousValue.hpp \
|
---|
43 | ../Parameters/ContinuousValue_impl.hpp \
|
---|
44 | ../Parameters/ContinuousParameter.hpp \
|
---|
45 | ../Parameters/ContinuousParameter_impl.hpp \
|
---|
46 | ../Parameters/Parameter.hpp \
|
---|
47 | ../Parameters/ValueInterface.hpp
|
---|
48 | ContinuousParameterTest_LDADD = \
|
---|
49 | $(PARAMETERSLIBS)
|
---|
50 |
|
---|
51 | DiscreteValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
52 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
---|
53 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
54 | ../Parameters/DiscreteValue.hpp \
|
---|
55 | ../Parameters/DiscreteValue_impl.hpp \
|
---|
56 | ../Parameters/ValueInterface.hpp
|
---|
57 | DiscreteValueTest_LDADD = \
|
---|
58 | $(PARAMETERSLIBS)
|
---|
59 |
|
---|
60 | DiscreteParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
61 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
---|
62 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
---|
63 | ../Parameters/DiscreteValue.hpp \
|
---|
64 | ../Parameters/DiscreteValue_impl.hpp \
|
---|
65 | ../Parameters/DiscreteParameter.hpp \
|
---|
66 | ../Parameters/DiscreteParameter_impl.hpp \
|
---|
67 | ../Parameters/Parameter.hpp \
|
---|
68 | ../Parameters/ValueInterface.hpp
|
---|
69 | DiscreteParameterTest_LDADD = \
|
---|
70 | $(PARAMETERSLIBS)
|
---|
71 |
|
---|
72 |
|
---|
73 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|