[84e752] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 |
|
---|
| 5 | PARSERPARAMETERSTESTSSOURCES = \
|
---|
[89a67f] | 6 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
|
---|
| 7 | ../Parser/Parameters/unittests/StringParameterUnitTest.cpp
|
---|
[84e752] | 8 |
|
---|
| 9 | PARSERPARAMETERSTESTSHEADERS = \
|
---|
[89a67f] | 10 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
|
---|
| 11 | ../Parser/Parameters/unittests/StringParameterUnitTest.hpp
|
---|
[84e752] | 12 |
|
---|
| 13 | PARSERPARAMETERSTESTS = \
|
---|
[89a67f] | 14 | ParameterStorageUnitTest \
|
---|
| 15 | StringParameterUnitTest
|
---|
[84e752] | 16 |
|
---|
| 17 | TESTS += $(PARSERPARAMETERSTESTS)
|
---|
| 18 | check_PROGRAMS += $(PARSERPARAMETERSTESTS)
|
---|
| 19 | noinst_PROGRAMS += $(PARSERPARAMETERSTESTS)
|
---|
| 20 |
|
---|
| 21 | PARSERPARAMETERSLIBS =
|
---|
| 22 |
|
---|
| 23 |
|
---|
[ec0acc] | 24 | ParameterStorageUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 25 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
|
---|
| 26 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
|
---|
| 27 | ../Parser/Parameters/ParameterStorage.cpp \
|
---|
| 28 | ../Parser/Parameters/ParameterStorage.hpp \
|
---|
[118f1e] | 29 | ../Parameters/Parameter.hpp \
|
---|
| 30 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
| 31 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 32 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 33 | ../Parameters/Validators/Validator.hpp \
|
---|
| 34 | ../Parameters/Value.hpp \
|
---|
| 35 | ../Parameters/Value_impl.hpp \
|
---|
| 36 | ../Parameters/ValueInterface.hpp \
|
---|
[ec0acc] | 37 | ParameterStorageUnitTest_LDADD = \
|
---|
| 38 | $(PARSERPARAMETERSLIBS)
|
---|
[89a67f] | 39 |
|
---|
| 40 | StringParameterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 41 | ../Parser/Parameters/unittests/StringParameterUnitTest.cpp \
|
---|
| 42 | ../Parser/Parameters/unittests/StringParameterUnitTest.hpp \
|
---|
[118f1e] | 43 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 44 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
| 45 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
| 46 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 47 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 48 | ../Parameters/Validators/Validator.hpp \
|
---|
| 49 | ../Parameters/Value.hpp \
|
---|
| 50 | ../Parameters/Value_impl.hpp \
|
---|
| 51 | ../Parameters/ValueInterface.hpp \
|
---|
| 52 | ../Parameters/VectorFromString.hpp
|
---|
[89a67f] | 53 | StringParameterUnitTest_LDADD = \
|
---|
| 54 | $(PARSERPARAMETERSLIBS)
|
---|
| 55 |
|
---|
[84e752] | 56 |
|
---|
| 57 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|