[c68409] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 |
|
---|
[dbb533] | 5 | PARAMETERSTESTSSOURCES = \
|
---|
| 6 | ../Parameters/unittests/ContinuousValueTest.cpp \
|
---|
| 7 | ../Parameters/unittests/ContinuousParameterTest.cpp \
|
---|
| 8 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
---|
[4892c3] | 9 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
---|
| 10 | ../Parameters/unittests/ValueTest.cpp
|
---|
[c68409] | 11 |
|
---|
[dbb533] | 12 | PARAMETERSTESTSHEADERS = \
|
---|
| 13 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
---|
| 14 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
---|
| 15 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
[4892c3] | 16 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
---|
| 17 | ../Parameters/unittests/ValueTest.hpp
|
---|
[c68409] | 18 |
|
---|
[dbb533] | 19 | PARAMETERSTESTS = \
|
---|
| 20 | ContinuousValueTest \
|
---|
| 21 | ContinuousParameterTest \
|
---|
| 22 | DiscreteValueTest \
|
---|
[4892c3] | 23 | DiscreteParameterTest \
|
---|
| 24 | ValueTest
|
---|
[c68409] | 25 |
|
---|
[dbb533] | 26 | TESTS += $(PARAMETERSTESTS)
|
---|
| 27 | check_PROGRAMS += $(PARAMETERSTESTS)
|
---|
| 28 | noinst_PROGRAMS += $(PARAMETERSTESTS)
|
---|
[c68409] | 29 |
|
---|
[dbb533] | 30 | PARAMETERSLIBS =
|
---|
[c68409] | 31 |
|
---|
| 32 |
|
---|
[dbb533] | 33 | ContinuousValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 34 | ../Parameters/unittests/ContinuousValueTest.cpp \
|
---|
| 35 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
---|
[0ba371] | 36 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
[a696f9] | 37 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
[0ba371] | 38 | ../Parameters/Validators/Validator.hpp \
|
---|
[c68409] | 39 | ../Parameters/ContinuousValue.hpp \
|
---|
| 40 | ../Parameters/ContinuousValue_impl.hpp \
|
---|
[7d1b6a] | 41 | ../Parameters/Range.hpp \
|
---|
[c68409] | 42 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 43 | ContinuousValueTest_LDADD = \
|
---|
[7d1b6a] | 44 | $(PARAMETERSLIBS) \
|
---|
| 45 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 46 |
|
---|
[dbb533] | 47 | ContinuousParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 48 | ../Parameters/unittests/ContinuousParameterTest.cpp \
|
---|
| 49 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
---|
[0ba371] | 50 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
[a696f9] | 51 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
[0ba371] | 52 | ../Parameters/Validators/Validator.hpp \
|
---|
[c68409] | 53 | ../Parameters/ContinuousValue.hpp \
|
---|
| 54 | ../Parameters/ContinuousValue_impl.hpp \
|
---|
| 55 | ../Parameters/ContinuousParameter.hpp \
|
---|
| 56 | ../Parameters/ContinuousParameter_impl.hpp \
|
---|
[9cd0d0] | 57 | ../Parameters/ParameterInterface.hpp \
|
---|
[85d89b] | 58 | ../Parameters/Range.hpp \
|
---|
[c68409] | 59 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 60 | ContinuousParameterTest_LDADD = \
|
---|
[7d1b6a] | 61 | $(PARAMETERSLIBS) \
|
---|
| 62 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 63 |
|
---|
[dbb533] | 64 | DiscreteValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 65 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
---|
| 66 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
[916a2d] | 67 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
[0ba371] | 68 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
| 69 | ../Parameters/Validators/Validator.hpp \
|
---|
[c68409] | 70 | ../Parameters/DiscreteValue.hpp \
|
---|
| 71 | ../Parameters/DiscreteValue_impl.hpp \
|
---|
| 72 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 73 | DiscreteValueTest_LDADD = \
|
---|
| 74 | $(PARAMETERSLIBS)
|
---|
[c68409] | 75 |
|
---|
[dbb533] | 76 | DiscreteParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 77 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
---|
| 78 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
---|
[916a2d] | 79 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
[0ba371] | 80 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
| 81 | ../Parameters/Validators/Validator.hpp \
|
---|
[c68409] | 82 | ../Parameters/DiscreteValue.hpp \
|
---|
| 83 | ../Parameters/DiscreteValue_impl.hpp \
|
---|
| 84 | ../Parameters/DiscreteParameter.hpp \
|
---|
| 85 | ../Parameters/DiscreteParameter_impl.hpp \
|
---|
[9cd0d0] | 86 | ../Parameters/ParameterInterface.hpp \
|
---|
[c68409] | 87 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 88 | DiscreteParameterTest_LDADD = \
|
---|
| 89 | $(PARAMETERSLIBS)
|
---|
[4892c3] | 90 |
|
---|
| 91 |
|
---|
| 92 | ValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 93 | ../Parameters/unittests/ValueTest.cpp \
|
---|
| 94 | ../Parameters/unittests/ValueTest.hpp \
|
---|
| 95 | ../Parameters/Value.hpp \
|
---|
| 96 | ../Parameters/Value_impl.hpp \
|
---|
| 97 | ../Parameters/ValueInterface.hpp
|
---|
| 98 | ContinuousValueTest_LDADD = \
|
---|
| 99 | $(PARAMETERSLIBS) \
|
---|
| 100 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 101 |
|
---|
| 102 |
|
---|
| 103 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|