[84e752] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 |
|
---|
| 5 | PARSERPARAMETERSTESTSSOURCES = \
|
---|
| 6 | ../Parser/Parameters/unittests/ContinuousValueUnitTest.cpp \
|
---|
[c4afd1] | 7 | ../Parser/Parameters/unittests/ContinuousParameterUnitTest.cpp \
|
---|
| 8 | ../Parser/Parameters/unittests/DiscreteValueUnitTest.cpp \
|
---|
[ec0acc] | 9 | ../Parser/Parameters/unittests/DiscreteParameterUnitTest.cpp \
|
---|
[89a67f] | 10 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
|
---|
| 11 | ../Parser/Parameters/unittests/StringParameterUnitTest.cpp
|
---|
[84e752] | 12 |
|
---|
| 13 | PARSERPARAMETERSTESTSHEADERS = \
|
---|
| 14 | ../Parser/Parameters/unittests/ContinuousValueUnitTest.hpp \
|
---|
[c4afd1] | 15 | ../Parser/Parameters/unittests/ContinuousParameterUnitTest.hpp \
|
---|
| 16 | ../Parser/Parameters/unittests/DiscreteValueUnitTest.hpp \
|
---|
[ec0acc] | 17 | ../Parser/Parameters/unittests/DiscreteParameterUnitTest.hpp \
|
---|
[89a67f] | 18 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
|
---|
| 19 | ../Parser/Parameters/unittests/StringParameterUnitTest.hpp
|
---|
[84e752] | 20 |
|
---|
| 21 | PARSERPARAMETERSTESTS = \
|
---|
| 22 | ContinuousValueUnitTest \
|
---|
[c4afd1] | 23 | ContinuousParameterUnitTest \
|
---|
| 24 | DiscreteValueUnitTest \
|
---|
[ec0acc] | 25 | DiscreteParameterUnitTest \
|
---|
[89a67f] | 26 | ParameterStorageUnitTest \
|
---|
| 27 | StringParameterUnitTest
|
---|
[84e752] | 28 |
|
---|
| 29 | TESTS += $(PARSERPARAMETERSTESTS)
|
---|
| 30 | check_PROGRAMS += $(PARSERPARAMETERSTESTS)
|
---|
| 31 | noinst_PROGRAMS += $(PARSERPARAMETERSTESTS)
|
---|
| 32 |
|
---|
| 33 | PARSERPARAMETERSLIBS =
|
---|
| 34 |
|
---|
| 35 |
|
---|
| 36 | ContinuousValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 37 | ../Parser/Parameters/unittests/ContinuousValueUnitTest.cpp \
|
---|
| 38 | ../Parser/Parameters/unittests/ContinuousValueUnitTest.hpp \
|
---|
| 39 | ../Parser/Parameters/ContinuousValue.hpp \
|
---|
[c4afd1] | 40 | ../Parser/Parameters/ContinuousValue_impl.hpp \
|
---|
| 41 | ../Parser/Parameters/ValueInterface.hpp
|
---|
[84e752] | 42 | ContinuousValueUnitTest_LDADD = \
|
---|
| 43 | $(PARSERPARAMETERSLIBS)
|
---|
| 44 |
|
---|
[c4afd1] | 45 | ContinuousParameterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 46 | ../Parser/Parameters/unittests/ContinuousParameterUnitTest.cpp \
|
---|
| 47 | ../Parser/Parameters/unittests/ContinuousParameterUnitTest.hpp \
|
---|
| 48 | ../Parser/Parameters/ContinuousValue.hpp \
|
---|
| 49 | ../Parser/Parameters/ContinuousValue_impl.hpp \
|
---|
| 50 | ../Parser/Parameters/ContinuousParameter.hpp \
|
---|
| 51 | ../Parser/Parameters/ContinuousParameter_impl.hpp \
|
---|
| 52 | ../Parser/Parameters/Parameter.hpp \
|
---|
| 53 | ../Parser/Parameters/ValueInterface.hpp
|
---|
| 54 | ContinuousParameterUnitTest_LDADD = \
|
---|
| 55 | $(PARSERPARAMETERSLIBS)
|
---|
| 56 |
|
---|
[84e752] | 57 | DiscreteValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 58 | ../Parser/Parameters/unittests/DiscreteValueUnitTest.cpp \
|
---|
| 59 | ../Parser/Parameters/unittests/DiscreteValueUnitTest.hpp \
|
---|
| 60 | ../Parser/Parameters/DiscreteValue.hpp \
|
---|
[c4afd1] | 61 | ../Parser/Parameters/DiscreteValue_impl.hpp \
|
---|
| 62 | ../Parser/Parameters/ValueInterface.hpp
|
---|
[84e752] | 63 | DiscreteValueUnitTest_LDADD = \
|
---|
| 64 | $(PARSERPARAMETERSLIBS)
|
---|
[c4afd1] | 65 |
|
---|
| 66 | DiscreteParameterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 67 | ../Parser/Parameters/unittests/DiscreteParameterUnitTest.cpp \
|
---|
| 68 | ../Parser/Parameters/unittests/DiscreteParameterUnitTest.hpp \
|
---|
| 69 | ../Parser/Parameters/DiscreteValue.hpp \
|
---|
| 70 | ../Parser/Parameters/DiscreteValue_impl.hpp \
|
---|
| 71 | ../Parser/Parameters/DiscreteParameter.hpp \
|
---|
| 72 | ../Parser/Parameters/DiscreteParameter_impl.hpp \
|
---|
| 73 | ../Parser/Parameters/Parameter.hpp \
|
---|
| 74 | ../Parser/Parameters/ValueInterface.hpp
|
---|
| 75 | DiscreteParameterUnitTest_LDADD = \
|
---|
| 76 | $(PARSERPARAMETERSLIBS)
|
---|
[ec0acc] | 77 |
|
---|
| 78 | ParameterStorageUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 79 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
|
---|
| 80 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
|
---|
| 81 | ../Parser/Parameters/ParameterStorage.cpp \
|
---|
| 82 | ../Parser/Parameters/ParameterStorage.hpp \
|
---|
| 83 | ../Parser/Parameters/ContinuousValue.hpp \
|
---|
| 84 | ../Parser/Parameters/ContinuousValue_impl.hpp \
|
---|
| 85 | ../Parser/Parameters/DiscreteValue.hpp \
|
---|
| 86 | ../Parser/Parameters/DiscreteValue_impl.hpp \
|
---|
| 87 | ../Parser/Parameters/ValueInterface.hpp
|
---|
| 88 | ParameterStorageUnitTest_LDADD = \
|
---|
| 89 | $(CodePatterns_LIBS) \
|
---|
| 90 | $(PARSERPARAMETERSLIBS)
|
---|
[89a67f] | 91 |
|
---|
| 92 | StringParameterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 93 | ../Parser/Parameters/unittests/StringParameterUnitTest.cpp \
|
---|
| 94 | ../Parser/Parameters/unittests/StringParameterUnitTest.hpp \
|
---|
| 95 | ../Parser/Parameters/StringParameter.cpp \
|
---|
| 96 | ../Parser/Parameters/StringParameter.hpp \
|
---|
| 97 | ../Parser/Parameters/Parameter.hpp \
|
---|
| 98 | ../Parser/Parameters/ValueInterface.hpp
|
---|
| 99 | StringParameterUnitTest_LDADD = \
|
---|
| 100 | $(PARSERPARAMETERSLIBS)
|
---|
| 101 |
|
---|
[84e752] | 102 |
|
---|
| 103 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|