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