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

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

Reworked inheritance graph of Parameter and Value.

  • Property mode set to 100644
File size: 3.8 KB
RevLine 
[c68409]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4
[dbb533]5PARAMETERSTESTSSOURCES = \
6 ../Parameters/unittests/ContinuousValueTest.cpp \
7 ../Parameters/unittests/ContinuousParameterTest.cpp \
8 ../Parameters/unittests/DiscreteValueTest.cpp \
[33d0af]9 ../Parameters/unittests/DiscreteParameterTest.cpp \
10 ../Parameters/unittests/Ops_ValidatorTest.cpp
[c68409]11
[dbb533]12PARAMETERSTESTSHEADERS = \
13 ../Parameters/unittests/ContinuousValueTest.hpp \
14 ../Parameters/unittests/ContinuousParameterTest.hpp \
15 ../Parameters/unittests/DiscreteValueTest.hpp \
[33d0af]16 ../Parameters/unittests/DiscreteParameterTest.hpp \
17 ../Parameters/unittests/Ops_ValidatorTest.hpp
[c68409]18
[dbb533]19PARAMETERSTESTS = \
20 ContinuousValueTest \
21 ContinuousParameterTest \
22 DiscreteValueTest \
[33d0af]23 DiscreteParameterTest \
24 Ops_ValidatorTest
[c68409]25
[dbb533]26TESTS += $(PARAMETERSTESTS)
27check_PROGRAMS += $(PARAMETERSTESTS)
28noinst_PROGRAMS += $(PARAMETERSTESTS)
[c68409]29
[b4b364]30PARAMETERSLIBS = \
31 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
32 ${CodePatterns_LIBS} \
33 $(BOOST_THREAD_LDFLAGS) $(BOOST_THREAD_LIBS)
[c68409]34
35
[dbb533]36ContinuousValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
37 ../Parameters/unittests/ContinuousValueTest.cpp \
38 ../Parameters/unittests/ContinuousValueTest.hpp \
[a696f9]39 ../Parameters/Validators/RangeValidator.hpp \
[3c5ef5]40 ../Parameters/Validators/RangeValidator_impl.hpp \
[345883]41 ../Parameters/Value_impl.hpp \
[3c5ef5]42 ../Parameters/Value.hpp \
43 ../Parameters/Value_impl.hpp \
[7dc60a]44 ../Parameters/ValueAsString.hpp \
[f10b0c]45 ../Parameters/ValueInterface.hpp
[dbb533]46ContinuousValueTest_LDADD = \
[b4b364]47 $(PARAMETERSLIBS)
[c68409]48
[dbb533]49ContinuousParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
50 ../Parameters/unittests/ContinuousParameterTest.cpp \
51 ../Parameters/unittests/ContinuousParameterTest.hpp \
[345883]52 ../Parameters/ParameterExceptions.hpp \
[3c5ef5]53 ../Parameters/Validators/RangeValidator.hpp \
54 ../Parameters/Validators/RangeValidator_impl.hpp \
55 ../Parameters/Validators/Validator.hpp \
[345883]56 ../Parameters/Parameter.hpp \
57 ../Parameters/Parameter_impl.hpp \
58 ../Parameters/ParameterInterface.hpp
[dbb533]59ContinuousParameterTest_LDADD = \
[b4b364]60 $(PARAMETERSLIBS)
[c68409]61
[dbb533]62DiscreteValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
63 ../Parameters/unittests/DiscreteValueTest.cpp \
64 ../Parameters/unittests/DiscreteValueTest.hpp \
[e45c1d]65 ../Parameters/ParameterExceptions.hpp \
[916a2d]66 ../Parameters/Validators/DiscreteValidator.hpp \
[9b5eb0]67 ../Parameters/Validators/DiscreteValidator_impl.hpp \
[0ba371]68 ../Parameters/Validators/Validator.hpp \
[3c5ef5]69 ../Parameters/Value.hpp \
70 ../Parameters/Value_impl.hpp \
[7dc60a]71 ../Parameters/ValueAsString.hpp \
[c68409]72 ../Parameters/ValueInterface.hpp
[dbb533]73DiscreteValueTest_LDADD = \
[b4b364]74 $(PARAMETERSLIBS)
[c68409]75
[dbb533]76DiscreteParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
77 ../Parameters/unittests/DiscreteParameterTest.cpp \
78 ../Parameters/unittests/DiscreteParameterTest.hpp \
[3c5ef5]79 ../Parameters/Parameter.hpp \
80 ../Parameters/Parameter_impl.hpp \
[9cd0d0]81 ../Parameters/ParameterInterface.hpp \
[3c5ef5]82 ../Parameters/Validators/DiscreteValidator.hpp \
83 ../Parameters/Validators/DiscreteValidator_impl.hpp \
84 ../Parameters/Validators/Validator.hpp \
[4892c3]85 ../Parameters/Value.hpp \
86 ../Parameters/Value_impl.hpp \
[7dc60a]87 ../Parameters/ValueAsString.hpp \
[4892c3]88 ../Parameters/ValueInterface.hpp
[3c5ef5]89DiscreteParameterTest_LDADD = \
[b4b364]90 $(PARAMETERSLIBS)
[33d0af]91
92Ops_ValidatorTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
93 ../Parameters/unittests/Ops_ValidatorTest.cpp \
94 ../Parameters/unittests/Ops_ValidatorTest.hpp \
95 ../Parameters/Validators/DiscreteValidator.hpp \
96 ../Parameters/Validators/DiscreteValidator_impl.hpp \
97 ../Parameters/Validators/DummyValidator.hpp \
98 ../Parameters/Validators/Ops_Validator.hpp \
99 ../Parameters/Validators/Ops_Validator_impl.hpp \
100 ../Parameters/Validators/RangeValidator.hpp \
101 ../Parameters/Validators/RangeValidator_impl.hpp \
102 ../Parameters/Validators/Validator.hpp
103Ops_ValidatorTest_LDADD = \
[b4b364]104 $(PARAMETERSLIBS)
[c68409]105
106
107#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.