[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 \
|
---|
[33d0af] | 9 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
---|
| 10 | ../Parameters/unittests/Ops_ValidatorTest.cpp
|
---|
[c68409] | 11 |
|
---|
[dbb533] | 12 | PARAMETERSTESTSHEADERS = \
|
---|
| 13 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
---|
| 14 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
---|
| 15 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
[33d0af] | 16 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
---|
| 17 | ../Parameters/unittests/Ops_ValidatorTest.hpp
|
---|
[c68409] | 18 |
|
---|
[dbb533] | 19 | PARAMETERSTESTS = \
|
---|
| 20 | ContinuousValueTest \
|
---|
| 21 | ContinuousParameterTest \
|
---|
| 22 | DiscreteValueTest \
|
---|
[33d0af] | 23 | DiscreteParameterTest \
|
---|
| 24 | Ops_ValidatorTest
|
---|
[c68409] | 25 |
|
---|
[dbb533] | 26 | TESTS += $(PARAMETERSTESTS)
|
---|
| 27 | check_PROGRAMS += $(PARAMETERSTESTS)
|
---|
| 28 | noinst_PROGRAMS += $(PARAMETERSTESTS)
|
---|
[c68409] | 29 |
|
---|
[b4b364] | 30 | PARAMETERSLIBS = \
|
---|
[e9e86f] | 31 | libUnitTest.la \
|
---|
[748fc7] | 32 | ../libMolecuilder.la \
|
---|
[b4b364] | 33 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 34 | ${CodePatterns_LIBS} \
|
---|
| 35 | $(BOOST_THREAD_LDFLAGS) $(BOOST_THREAD_LIBS)
|
---|
[c68409] | 36 |
|
---|
| 37 |
|
---|
[e9e86f] | 38 | ContinuousValueTest_SOURCES = \
|
---|
[dbb533] | 39 | ../Parameters/unittests/ContinuousValueTest.cpp \
|
---|
| 40 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
---|
[a696f9] | 41 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
[3c5ef5] | 42 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
[345883] | 43 | ../Parameters/Value_impl.hpp \
|
---|
[3c5ef5] | 44 | ../Parameters/Value.hpp \
|
---|
| 45 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 46 | ../Parameters/ValueAsString.hpp \
|
---|
[f10b0c] | 47 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 48 | ContinuousValueTest_LDADD = \
|
---|
[b4b364] | 49 | $(PARAMETERSLIBS)
|
---|
[c68409] | 50 |
|
---|
[e9e86f] | 51 | ContinuousParameterTest_SOURCES = \
|
---|
[dbb533] | 52 | ../Parameters/unittests/ContinuousParameterTest.cpp \
|
---|
| 53 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
---|
[345883] | 54 | ../Parameters/ParameterExceptions.hpp \
|
---|
[3c5ef5] | 55 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 56 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 57 | ../Parameters/Validators/Validator.hpp \
|
---|
[345883] | 58 | ../Parameters/Parameter.hpp \
|
---|
| 59 | ../Parameters/Parameter_impl.hpp \
|
---|
| 60 | ../Parameters/ParameterInterface.hpp
|
---|
[dbb533] | 61 | ContinuousParameterTest_LDADD = \
|
---|
[b4b364] | 62 | $(PARAMETERSLIBS)
|
---|
[c68409] | 63 |
|
---|
[e9e86f] | 64 | DiscreteValueTest_SOURCES = \
|
---|
[dbb533] | 65 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
---|
| 66 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
[e45c1d] | 67 | ../Parameters/ParameterExceptions.hpp \
|
---|
[916a2d] | 68 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
[9b5eb0] | 69 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
[0ba371] | 70 | ../Parameters/Validators/Validator.hpp \
|
---|
[3c5ef5] | 71 | ../Parameters/Value.hpp \
|
---|
| 72 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 73 | ../Parameters/ValueAsString.hpp \
|
---|
[c68409] | 74 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 75 | DiscreteValueTest_LDADD = \
|
---|
[b4b364] | 76 | $(PARAMETERSLIBS)
|
---|
[c68409] | 77 |
|
---|
[e9e86f] | 78 | DiscreteParameterTest_SOURCES = \
|
---|
[dbb533] | 79 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
---|
| 80 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
---|
[3c5ef5] | 81 | ../Parameters/Parameter.hpp \
|
---|
| 82 | ../Parameters/Parameter_impl.hpp \
|
---|
[9cd0d0] | 83 | ../Parameters/ParameterInterface.hpp \
|
---|
[3c5ef5] | 84 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 85 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
| 86 | ../Parameters/Validators/Validator.hpp \
|
---|
[4892c3] | 87 | ../Parameters/Value.hpp \
|
---|
| 88 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 89 | ../Parameters/ValueAsString.hpp \
|
---|
[4892c3] | 90 | ../Parameters/ValueInterface.hpp
|
---|
[3c5ef5] | 91 | DiscreteParameterTest_LDADD = \
|
---|
[b4b364] | 92 | $(PARAMETERSLIBS)
|
---|
[33d0af] | 93 |
|
---|
[e9e86f] | 94 | Ops_ValidatorTest_SOURCES = \
|
---|
[33d0af] | 95 | ../Parameters/unittests/Ops_ValidatorTest.cpp \
|
---|
| 96 | ../Parameters/unittests/Ops_ValidatorTest.hpp \
|
---|
| 97 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 98 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
| 99 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
| 100 | ../Parameters/Validators/Ops_Validator.hpp \
|
---|
| 101 | ../Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
| 102 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 103 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 104 | ../Parameters/Validators/Validator.hpp
|
---|
| 105 | Ops_ValidatorTest_LDADD = \
|
---|
[b4b364] | 106 | $(PARAMETERSLIBS)
|
---|
[c68409] | 107 |
|
---|
| 108 |
|
---|
| 109 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|