source: src/Parser/Parameters/unittests/Makefile.am@ 97dff0

Last change on this file since 97dff0 was ef918c, checked in by Frederik Heber <heber@…>, 13 years ago

DISTFIX: typo in header files.

  • Property mode set to 100644
File size: 2.2 KB
RevLine 
[84e752]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4
5PARSERPARAMETERSTESTSSOURCES = \
[89a67f]6 ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
7 ../Parser/Parameters/unittests/StringParameterUnitTest.cpp
[84e752]8
9PARSERPARAMETERSTESTSHEADERS = \
[89a67f]10 ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
11 ../Parser/Parameters/unittests/StringParameterUnitTest.hpp
[84e752]12
13PARSERPARAMETERSTESTS = \
[89a67f]14 ParameterStorageUnitTest \
15 StringParameterUnitTest
[84e752]16
17TESTS += $(PARSERPARAMETERSTESTS)
18check_PROGRAMS += $(PARSERPARAMETERSTESTS)
19noinst_PROGRAMS += $(PARSERPARAMETERSTESTS)
20
[345883]21PARSERPARAMETERSLIBS = \
22 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
[b4b364]23 ${CodePatterns_LIBS} \
24 $(BOOST_THREAD_LDFLAGS) $(BOOST_THREAD_LIBS)
[84e752]25
26
[ec0acc]27ParameterStorageUnitTest_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]40ParameterStorageUnitTest_LDADD = \
41 $(PARSERPARAMETERSLIBS)
[89a67f]42
43StringParameterUnitTest_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]57StringParameterUnitTest_LDADD = \
[2665d3]58 ../libMolecuilderParameters.la \
[89a67f]59 $(PARSERPARAMETERSLIBS)
60
[84e752]61
62#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.