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