1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | UIELEMENTSMENUTESTSSOURCES = \
|
---|
5 | ../UIElements/Menu/unittests/MenuDescriptionUnitTest.cpp \
|
---|
6 | ../UIElements/Menu/unittests/MenuDescription_ActionRegistry_ConsistencyUnitTest.cpp
|
---|
7 |
|
---|
8 | UIELEMENTSMENUTESTSHEADERS = \
|
---|
9 | ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp \
|
---|
10 | ../UIElements/Menu/unittests/MenuDescription_ActionRegistry_ConsistencyUnitTest.hpp
|
---|
11 |
|
---|
12 | UIELEMENTSMENUTESTS = \
|
---|
13 | MenuDescriptionUnitTest \
|
---|
14 | MenuDescription_ActionRegistry_ConsistencyUnitTest
|
---|
15 |
|
---|
16 | TESTS += $(UIELEMENTSMENUTESTS)
|
---|
17 | check_PROGRAMS += $(UIELEMENTSMENUTESTS)
|
---|
18 | noinst_PROGRAMS += $(UIELEMENTSMENUTESTS)
|
---|
19 |
|
---|
20 | MENULIBS =
|
---|
21 | # $(BOOST_LIB)
|
---|
22 |
|
---|
23 |
|
---|
24 | MenuDescriptionUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
25 | ../UIElements/Menu/unittests/MenuDescriptionUnitTest.cpp \
|
---|
26 | ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp \
|
---|
27 | ../UIElements/Menu/MenuDescription.cpp \
|
---|
28 | ../UIElements/Menu/MenuDescription.hpp
|
---|
29 | MenuDescriptionUnitTest_CXXFLAGS = -I$(top_srcdir)/src/UIElements
|
---|
30 | MenuDescriptionUnitTest_LDADD = $(MENULIBS)
|
---|
31 |
|
---|
32 | MenuDescription_ActionRegistry_ConsistencyUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
33 | ../UIElements/Menu/unittests/MenuDescription_ActionRegistry_ConsistencyUnitTest.cpp \
|
---|
34 | ../UIElements/Menu/unittests/MenuDescription_ActionRegistry_ConsistencyUnitTest.hpp
|
---|
35 | MenuDescription_ActionRegistry_ConsistencyUnitTest_LDADD = \
|
---|
36 | ../libMolecuilderUI.la \
|
---|
37 | ../libMolecuilderActions.la \
|
---|
38 | ../libMolecuilderGraph.la \
|
---|
39 | ../libMolecuilder.la \
|
---|
40 | ../libMolecuilderParser.la \
|
---|
41 | ../libMolecuilderShapes.la
|
---|
42 | if CONDJOBMARKET
|
---|
43 | MenuDescription_ActionRegistry_ConsistencyUnitTest_LDADD += \
|
---|
44 | ../libMolecuilderJobs.la
|
---|
45 | endif
|
---|
46 | MenuDescription_ActionRegistry_ConsistencyUnitTest_LDADD += \
|
---|
47 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
48 | ../libMolecuilderRandomNumbers.la \
|
---|
49 | ${CodePatterns_LIBS}
|
---|
50 |
|
---|
51 | # $(BOOST_LIB)
|
---|
52 |
|
---|
53 |
|
---|
54 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|