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