[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 |
|
---|
[345883] | 21 | PARSERPARAMETERSLIBS = \
|
---|
| 22 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 23 | ${CodePatterns_LIBS}
|
---|
[84e752] | 24 |
|
---|
| 25 |
|
---|
[ec0acc] | 26 | ParameterStorageUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 27 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
|
---|
| 28 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
|
---|
| 29 | ../Parser/Parameters/ParameterStorage.cpp \
|
---|
| 30 | ../Parser/Parameters/ParameterStorage.hpp \
|
---|
[118f1e] | 31 | ../Parameters/Parameter.hpp \
|
---|
| 32 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
| 33 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 34 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 35 | ../Parameters/Validators/Validator.hpp \
|
---|
| 36 | ../Parameters/Value.hpp \
|
---|
| 37 | ../Parameters/Value_impl.hpp \
|
---|
[345883] | 38 | ../Parameters/ValueInterface.hpp
|
---|
[ec0acc] | 39 | ParameterStorageUnitTest_LDADD = \
|
---|
| 40 | $(PARSERPARAMETERSLIBS)
|
---|
[89a67f] | 41 |
|
---|
| 42 | StringParameterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 43 | ../Parser/Parameters/unittests/StringParameterUnitTest.cpp \
|
---|
| 44 | ../Parser/Parameters/unittests/StringParameterUnitTest.hpp \
|
---|
[f10b0c] | 45 | ../Parameters/StreamOperators.hpp \
|
---|
[118f1e] | 46 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 47 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
| 48 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
| 49 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 50 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 51 | ../Parameters/Validators/Validator.hpp \
|
---|
| 52 | ../Parameters/Value.hpp \
|
---|
| 53 | ../Parameters/Value_impl.hpp \
|
---|
[f10b0c] | 54 | ../Parameters/ValueInterface.hpp
|
---|
[89a67f] | 55 | StringParameterUnitTest_LDADD = \
|
---|
| 56 | $(PARSERPARAMETERSLIBS)
|
---|
| 57 |
|
---|
[84e752] | 58 |
|
---|
| 59 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|