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/Validators/DiscreteValidator.hpp \
|
---|
34 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
35 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
36 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
37 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
38 | ../Parameters/Validators/Validator.hpp \
|
---|
39 | ../Parameters/Value.hpp \
|
---|
40 | ../Parameters/Value_impl.hpp \
|
---|
41 | ../Parameters/ValueAsString.hpp \
|
---|
42 | ../Parameters/ValueInterface.hpp \
|
---|
43 | ../Parameters/VectorFromString.hpp
|
---|
44 | ContinuousValueTest_LDADD = \
|
---|
45 | $(PARAMETERSLIBS) \
|
---|
46 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
47 |
|
---|
48 | ContinuousParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
49 | ../Parameters/unittests/ContinuousParameterTest.cpp \
|
---|
50 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
---|
51 | ../Parameters/ContinuousValue.hpp \
|
---|
52 | ../Parameters/ContinuousValue_impl.hpp \
|
---|
53 | ../Parameters/ContinuousParameter.hpp \
|
---|
54 | ../Parameters/ContinuousParameter_impl.hpp \
|
---|
55 | ../Parameters/Parameter.hpp \
|
---|
56 | ../Parameters/Parameter_impl.hpp \
|
---|
57 | ../Parameters/ParameterAsString.hpp \
|
---|
58 | ../Parameters/ParameterInterface.hpp \
|
---|
59 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
60 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
61 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
62 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
63 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
64 | ../Parameters/Validators/Validator.hpp \
|
---|
65 | ../Parameters/Value.hpp \
|
---|
66 | ../Parameters/Value_impl.hpp \
|
---|
67 | ../Parameters/ValueAsString.hpp \
|
---|
68 | ../Parameters/ValueInterface.hpp
|
---|
69 | ContinuousParameterTest_LDADD = \
|
---|
70 | $(PARAMETERSLIBS) \
|
---|
71 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
72 |
|
---|
73 | DiscreteValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
74 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
---|
75 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
76 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
77 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
78 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
79 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
80 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
81 | ../Parameters/Validators/Validator.hpp \
|
---|
82 | ../Parameters/Value.hpp \
|
---|
83 | ../Parameters/Value_impl.hpp \
|
---|
84 | ../Parameters/ValueAsString.hpp \
|
---|
85 | ../Parameters/ValueInterface.hpp
|
---|
86 | DiscreteValueTest_LDADD = \
|
---|
87 | $(PARAMETERSLIBS) \
|
---|
88 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
89 |
|
---|
90 | DiscreteParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
91 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
---|
92 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
---|
93 | ../Parameters/DiscreteValue.hpp \
|
---|
94 | ../Parameters/DiscreteValue_impl.hpp \
|
---|
95 | ../Parameters/DiscreteParameter.hpp \
|
---|
96 | ../Parameters/DiscreteParameter_impl.hpp \
|
---|
97 | ../Parameters/Parameter.hpp \
|
---|
98 | ../Parameters/Parameter_impl.hpp \
|
---|
99 | ../Parameters/ParameterAsString.hpp \
|
---|
100 | ../Parameters/ParameterInterface.hpp \
|
---|
101 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
102 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
103 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
104 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
105 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
106 | ../Parameters/Validators/Validator.hpp \
|
---|
107 | ../Parameters/Value.hpp \
|
---|
108 | ../Parameters/Value_impl.hpp \
|
---|
109 | ../Parameters/ValueAsString.hpp \
|
---|
110 | ../Parameters/ValueInterface.hpp
|
---|
111 | DiscreteParameterTest_LDADD = \
|
---|
112 | $(PARAMETERSLIBS) \
|
---|
113 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
114 |
|
---|
115 |
|
---|
116 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|