| 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 \
|
|---|
| 7 | ../Parser/Parameters/unittests/ContinuousParameterUnitTest.cpp \
|
|---|
| 8 | ../Parser/Parameters/unittests/DiscreteValueUnitTest.cpp \
|
|---|
| 9 | ../Parser/Parameters/unittests/DiscreteParameterUnitTest.cpp \
|
|---|
| 10 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
|
|---|
| 11 | ../Parser/Parameters/unittests/StringParameterUnitTest.cpp
|
|---|
| 12 |
|
|---|
| 13 | PARSERPARAMETERSTESTSHEADERS = \
|
|---|
| 14 | ../Parser/Parameters/unittests/ContinuousValueUnitTest.hpp \
|
|---|
| 15 | ../Parser/Parameters/unittests/ContinuousParameterUnitTest.hpp \
|
|---|
| 16 | ../Parser/Parameters/unittests/DiscreteValueUnitTest.hpp \
|
|---|
| 17 | ../Parser/Parameters/unittests/DiscreteParameterUnitTest.hpp \
|
|---|
| 18 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
|
|---|
| 19 | ../Parser/Parameters/unittests/StringParameterUnitTest.hpp
|
|---|
| 20 |
|
|---|
| 21 | PARSERPARAMETERSTESTS = \
|
|---|
| 22 | ContinuousValueUnitTest \
|
|---|
| 23 | ContinuousParameterUnitTest \
|
|---|
| 24 | DiscreteValueUnitTest \
|
|---|
| 25 | DiscreteParameterUnitTest \
|
|---|
| 26 | ParameterStorageUnitTest \
|
|---|
| 27 | StringParameterUnitTest
|
|---|
| 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 \
|
|---|
| 40 | ../Parser/Parameters/ContinuousValue_impl.hpp \
|
|---|
| 41 | ../Parser/Parameters/ValueInterface.hpp
|
|---|
| 42 | ContinuousValueUnitTest_LDADD = \
|
|---|
| 43 | $(PARSERPARAMETERSLIBS)
|
|---|
| 44 |
|
|---|
| 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 |
|
|---|
| 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 \
|
|---|
| 61 | ../Parser/Parameters/DiscreteValue_impl.hpp \
|
|---|
| 62 | ../Parser/Parameters/ValueInterface.hpp
|
|---|
| 63 | DiscreteValueUnitTest_LDADD = \
|
|---|
| 64 | $(PARSERPARAMETERSLIBS)
|
|---|
| 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)
|
|---|
| 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)
|
|---|
| 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 |
|
|---|
| 102 |
|
|---|
| 103 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|