| 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
|---|
| 2 | # Also indentation by a single tab
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 | PARSERPARAMETERSTESTSSOURCES = \
|
|---|
| 6 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
|
|---|
| 7 | ../Parser/Parameters/unittests/StringParameterUnitTest.cpp
|
|---|
| 8 |
|
|---|
| 9 | PARSERPARAMETERSTESTSHEADERS = \
|
|---|
| 10 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \
|
|---|
| 11 | ../Parser/Parameters/unittests/StringParameterUnitTest.hpp
|
|---|
| 12 |
|
|---|
| 13 | PARSERPARAMETERSTESTS = \
|
|---|
| 14 | ParameterStorageUnitTest \
|
|---|
| 15 | StringParameterUnitTest
|
|---|
| 16 |
|
|---|
| 17 | TESTS += $(PARSERPARAMETERSTESTS)
|
|---|
| 18 | check_PROGRAMS += $(PARSERPARAMETERSTESTS)
|
|---|
| 19 | noinst_PROGRAMS += $(PARSERPARAMETERSTESTS)
|
|---|
| 20 |
|
|---|
| 21 | PARSERPARAMETERSLIBS = \
|
|---|
| 22 | libUnitTest.la \
|
|---|
| 23 | ../libMolecuilder.la \
|
|---|
| 24 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
|---|
| 25 | ${CodePatterns_LIBS} \
|
|---|
| 26 | $(BOOST_THREAD_LDFLAGS) $(BOOST_THREAD_LIBS)
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 | ParameterStorageUnitTest_SOURCES = \
|
|---|
| 30 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \
|
|---|
| 31 | ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp
|
|---|
| 32 | ParameterStorageUnitTest_LDADD = \
|
|---|
| 33 | ../libMolecuilderParser.la \
|
|---|
| 34 | $(PARSERPARAMETERSLIBS)
|
|---|
| 35 |
|
|---|
| 36 | StringParameterUnitTest_SOURCES = \
|
|---|
| 37 | ../Parser/Parameters/unittests/StringParameterUnitTest.cpp \
|
|---|
| 38 | ../Parser/Parameters/unittests/StringParameterUnitTest.hpp
|
|---|
| 39 | StringParameterUnitTest_LDADD = \
|
|---|
| 40 | ../libMolecuilderParameters.la \
|
|---|
| 41 | $(PARSERPARAMETERSLIBS)
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|