| [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 \
|
|---|
| [3c5ef5] | 9 | ../Parameters/unittests/DiscreteParameterTest.cpp
|
|---|
| [c68409] | 10 |
|
|---|
| [dbb533] | 11 | PARAMETERSTESTSHEADERS = \
|
|---|
| 12 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
|---|
| 13 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
|---|
| 14 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
|---|
| [3c5ef5] | 15 | ../Parameters/unittests/DiscreteParameterTest.hpp
|
|---|
| [c68409] | 16 |
|
|---|
| [dbb533] | 17 | PARAMETERSTESTS = \
|
|---|
| 18 | ContinuousValueTest \
|
|---|
| 19 | ContinuousParameterTest \
|
|---|
| 20 | DiscreteValueTest \
|
|---|
| [3c5ef5] | 21 | DiscreteParameterTest
|
|---|
| [c68409] | 22 |
|
|---|
| [dbb533] | 23 | TESTS += $(PARAMETERSTESTS)
|
|---|
| 24 | check_PROGRAMS += $(PARAMETERSTESTS)
|
|---|
| 25 | noinst_PROGRAMS += $(PARAMETERSTESTS)
|
|---|
| [c68409] | 26 |
|
|---|
| [dbb533] | 27 | PARAMETERSLIBS =
|
|---|
| [c68409] | 28 |
|
|---|
| 29 |
|
|---|
| [dbb533] | 30 | ContinuousValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 31 | ../Parameters/unittests/ContinuousValueTest.cpp \
|
|---|
| 32 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
|---|
| [f10b0c] | 33 | ../Parameters/StreamOperators.hpp \
|
|---|
| [3c5ef5] | 34 | ../Parameters/Validators/DiscreteValidator.hpp \
|
|---|
| 35 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
|---|
| [0ba371] | 36 | ../Parameters/Validators/DummyValidator.hpp \
|
|---|
| [a696f9] | 37 | ../Parameters/Validators/RangeValidator.hpp \
|
|---|
| [3c5ef5] | 38 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
|---|
| [0ba371] | 39 | ../Parameters/Validators/Validator.hpp \
|
|---|
| [3c5ef5] | 40 | ../Parameters/Value.hpp \
|
|---|
| 41 | ../Parameters/Value_impl.hpp \
|
|---|
| [7dc60a] | 42 | ../Parameters/ValueAsString.hpp \
|
|---|
| [f10b0c] | 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 \
|
|---|
| [c68409] | 51 | ../Parameters/ContinuousValue.hpp \
|
|---|
| 52 | ../Parameters/ContinuousValue_impl.hpp \
|
|---|
| 53 | ../Parameters/ContinuousParameter.hpp \
|
|---|
| 54 | ../Parameters/ContinuousParameter_impl.hpp \
|
|---|
| [3c5ef5] | 55 | ../Parameters/Parameter.hpp \
|
|---|
| 56 | ../Parameters/Parameter_impl.hpp \
|
|---|
| [7dc60a] | 57 | ../Parameters/ParameterAsString.hpp \
|
|---|
| [9cd0d0] | 58 | ../Parameters/ParameterInterface.hpp \
|
|---|
| [3c5ef5] | 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 \
|
|---|
| [7dc60a] | 67 | ../Parameters/ValueAsString.hpp \
|
|---|
| [c68409] | 68 | ../Parameters/ValueInterface.hpp
|
|---|
| [dbb533] | 69 | ContinuousParameterTest_LDADD = \
|
|---|
| [7d1b6a] | 70 | $(PARAMETERSLIBS) \
|
|---|
| 71 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
|---|
| [c68409] | 72 |
|
|---|
| [dbb533] | 73 | DiscreteValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 74 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
|---|
| 75 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
|---|
| [916a2d] | 76 | ../Parameters/Validators/DiscreteValidator.hpp \
|
|---|
| [9b5eb0] | 77 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
|---|
| [0ba371] | 78 | ../Parameters/Validators/DummyValidator.hpp \
|
|---|
| [3c5ef5] | 79 | ../Parameters/Validators/RangeValidator.hpp \
|
|---|
| 80 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
|---|
| [0ba371] | 81 | ../Parameters/Validators/Validator.hpp \
|
|---|
| [3c5ef5] | 82 | ../Parameters/Value.hpp \
|
|---|
| 83 | ../Parameters/Value_impl.hpp \
|
|---|
| [7dc60a] | 84 | ../Parameters/ValueAsString.hpp \
|
|---|
| [c68409] | 85 | ../Parameters/ValueInterface.hpp
|
|---|
| [dbb533] | 86 | DiscreteValueTest_LDADD = \
|
|---|
| [3c5ef5] | 87 | $(PARAMETERSLIBS) \
|
|---|
| 88 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
|---|
| [c68409] | 89 |
|
|---|
| [dbb533] | 90 | DiscreteParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 91 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
|---|
| 92 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
|---|
| [c68409] | 93 | ../Parameters/DiscreteValue.hpp \
|
|---|
| 94 | ../Parameters/DiscreteValue_impl.hpp \
|
|---|
| 95 | ../Parameters/DiscreteParameter.hpp \
|
|---|
| 96 | ../Parameters/DiscreteParameter_impl.hpp \
|
|---|
| [3c5ef5] | 97 | ../Parameters/Parameter.hpp \
|
|---|
| 98 | ../Parameters/Parameter_impl.hpp \
|
|---|
| [7dc60a] | 99 | ../Parameters/ParameterAsString.hpp \
|
|---|
| [9cd0d0] | 100 | ../Parameters/ParameterInterface.hpp \
|
|---|
| [3c5ef5] | 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 \
|
|---|
| [4892c3] | 107 | ../Parameters/Value.hpp \
|
|---|
| 108 | ../Parameters/Value_impl.hpp \
|
|---|
| [7dc60a] | 109 | ../Parameters/ValueAsString.hpp \
|
|---|
| [4892c3] | 110 | ../Parameters/ValueInterface.hpp
|
|---|
| [3c5ef5] | 111 | DiscreteParameterTest_LDADD = \
|
|---|
| [4892c3] | 112 | $(PARAMETERSLIBS) \
|
|---|
| 113 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
|---|
| [c68409] | 114 |
|
|---|
| 115 |
|
|---|
| 116 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|