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 | ../Parameters/unittests/ValueTest.cpp
|
---|
11 |
|
---|
12 | PARAMETERSTESTSHEADERS = \
|
---|
13 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
---|
14 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
---|
15 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
16 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
---|
17 | ../Parameters/unittests/ValueTest.hpp
|
---|
18 |
|
---|
19 | PARAMETERSTESTS = \
|
---|
20 | ContinuousValueTest \
|
---|
21 | ContinuousParameterTest \
|
---|
22 | DiscreteValueTest \
|
---|
23 | DiscreteParameterTest \
|
---|
24 | ValueTest
|
---|
25 |
|
---|
26 | TESTS += $(PARAMETERSTESTS)
|
---|
27 | check_PROGRAMS += $(PARAMETERSTESTS)
|
---|
28 | noinst_PROGRAMS += $(PARAMETERSTESTS)
|
---|
29 |
|
---|
30 | PARAMETERSLIBS =
|
---|
31 |
|
---|
32 |
|
---|
33 | ContinuousValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
34 | ../Parameters/unittests/ContinuousValueTest.cpp \
|
---|
35 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
---|
36 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
37 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
38 | ../Parameters/Validators/Validator.hpp \
|
---|
39 | ../Parameters/Validators/VectorRangeValidator.hpp \
|
---|
40 | ../Parameters/ContinuousValue.hpp \
|
---|
41 | ../Parameters/ContinuousValue_impl.hpp \
|
---|
42 | ../Parameters/Range.hpp \
|
---|
43 | ../Parameters/ValueInterface.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/Validators/DummyValidator.hpp \
|
---|
52 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
53 | ../Parameters/Validators/Validator.hpp \
|
---|
54 | ../Parameters/Validators/VectorRangeValidator.hpp \
|
---|
55 | ../Parameters/ContinuousValue.hpp \
|
---|
56 | ../Parameters/ContinuousValue_impl.hpp \
|
---|
57 | ../Parameters/ContinuousParameter.hpp \
|
---|
58 | ../Parameters/ContinuousParameter_impl.hpp \
|
---|
59 | ../Parameters/ParameterInterface.hpp \
|
---|
60 | ../Parameters/Range.hpp \
|
---|
61 | ../Parameters/ValueInterface.hpp
|
---|
62 | ContinuousParameterTest_LDADD = \
|
---|
63 | $(PARAMETERSLIBS) \
|
---|
64 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
65 |
|
---|
66 | DiscreteValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
67 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
---|
68 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
69 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
70 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
71 | ../Parameters/Validators/Validator.hpp \
|
---|
72 | ../Parameters/DiscreteValue.hpp \
|
---|
73 | ../Parameters/DiscreteValue_impl.hpp \
|
---|
74 | ../Parameters/ValueInterface.hpp
|
---|
75 | DiscreteValueTest_LDADD = \
|
---|
76 | $(PARAMETERSLIBS)
|
---|
77 |
|
---|
78 | DiscreteParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
79 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
---|
80 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
---|
81 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
82 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
83 | ../Parameters/Validators/Validator.hpp \
|
---|
84 | ../Parameters/DiscreteValue.hpp \
|
---|
85 | ../Parameters/DiscreteValue_impl.hpp \
|
---|
86 | ../Parameters/DiscreteParameter.hpp \
|
---|
87 | ../Parameters/DiscreteParameter_impl.hpp \
|
---|
88 | ../Parameters/ParameterInterface.hpp \
|
---|
89 | ../Parameters/ValueInterface.hpp
|
---|
90 | DiscreteParameterTest_LDADD = \
|
---|
91 | $(PARAMETERSLIBS)
|
---|
92 |
|
---|
93 |
|
---|
94 | ValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
95 | ../Parameters/unittests/ValueTest.cpp \
|
---|
96 | ../Parameters/unittests/ValueTest.hpp \
|
---|
97 | ../Parameters/Value.hpp \
|
---|
98 | ../Parameters/Value_impl.hpp \
|
---|
99 | ../Parameters/ValueInterface.hpp
|
---|
100 | ContinuousValueTest_LDADD = \
|
---|
101 | $(PARAMETERSLIBS) \
|
---|
102 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
103 |
|
---|
104 |
|
---|
105 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|