| [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 \
|
|---|
| [fc32ad] | 39 | ../Parameters/Validators/VectorRangeValidator.hpp \
|
|---|
| [c68409] | 40 | ../Parameters/ContinuousValue.hpp \
|
|---|
| 41 | ../Parameters/ContinuousValue_impl.hpp \
|
|---|
| [7d1b6a] | 42 | ../Parameters/Range.hpp \
|
|---|
| [c68409] | 43 | ../Parameters/ValueInterface.hpp
|
|---|
| [dbb533] | 44 | ContinuousValueTest_LDADD = \
|
|---|
| [7d1b6a] | 45 | $(PARAMETERSLIBS) \
|
|---|
| 46 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
|---|
| [c68409] | 47 |
|
|---|
| [dbb533] | 48 | ContinuousParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 49 | ../Parameters/unittests/ContinuousParameterTest.cpp \
|
|---|
| 50 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
|---|
| [0ba371] | 51 | ../Parameters/Validators/DummyValidator.hpp \
|
|---|
| [a696f9] | 52 | ../Parameters/Validators/RangeValidator.hpp \
|
|---|
| [0ba371] | 53 | ../Parameters/Validators/Validator.hpp \
|
|---|
| [fc32ad] | 54 | ../Parameters/Validators/VectorRangeValidator.hpp \
|
|---|
| [c68409] | 55 | ../Parameters/ContinuousValue.hpp \
|
|---|
| 56 | ../Parameters/ContinuousValue_impl.hpp \
|
|---|
| 57 | ../Parameters/ContinuousParameter.hpp \
|
|---|
| 58 | ../Parameters/ContinuousParameter_impl.hpp \
|
|---|
| [9cd0d0] | 59 | ../Parameters/ParameterInterface.hpp \
|
|---|
| [85d89b] | 60 | ../Parameters/Range.hpp \
|
|---|
| [c68409] | 61 | ../Parameters/ValueInterface.hpp
|
|---|
| [dbb533] | 62 | ContinuousParameterTest_LDADD = \
|
|---|
| [7d1b6a] | 63 | $(PARAMETERSLIBS) \
|
|---|
| 64 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
|---|
| [c68409] | 65 |
|
|---|
| [dbb533] | 66 | DiscreteValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 67 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
|---|
| 68 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
|---|
| [916a2d] | 69 | ../Parameters/Validators/DiscreteValidator.hpp \
|
|---|
| [0ba371] | 70 | ../Parameters/Validators/DummyValidator.hpp \
|
|---|
| 71 | ../Parameters/Validators/Validator.hpp \
|
|---|
| [c68409] | 72 | ../Parameters/DiscreteValue.hpp \
|
|---|
| 73 | ../Parameters/DiscreteValue_impl.hpp \
|
|---|
| 74 | ../Parameters/ValueInterface.hpp
|
|---|
| [dbb533] | 75 | DiscreteValueTest_LDADD = \
|
|---|
| 76 | $(PARAMETERSLIBS)
|
|---|
| [c68409] | 77 |
|
|---|
| [dbb533] | 78 | DiscreteParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 79 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
|---|
| 80 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
|---|
| [916a2d] | 81 | ../Parameters/Validators/DiscreteValidator.hpp \
|
|---|
| [0ba371] | 82 | ../Parameters/Validators/DummyValidator.hpp \
|
|---|
| 83 | ../Parameters/Validators/Validator.hpp \
|
|---|
| [c68409] | 84 | ../Parameters/DiscreteValue.hpp \
|
|---|
| 85 | ../Parameters/DiscreteValue_impl.hpp \
|
|---|
| 86 | ../Parameters/DiscreteParameter.hpp \
|
|---|
| 87 | ../Parameters/DiscreteParameter_impl.hpp \
|
|---|
| [9cd0d0] | 88 | ../Parameters/ParameterInterface.hpp \
|
|---|
| [c68409] | 89 | ../Parameters/ValueInterface.hpp
|
|---|
| [dbb533] | 90 | DiscreteParameterTest_LDADD = \
|
|---|
| 91 | $(PARAMETERSLIBS)
|
|---|
| [4892c3] | 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
|
|---|
| [c68409] | 103 |
|
|---|
| 104 |
|
|---|
| 105 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|