| Line | |
|---|
| 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
|---|
| 2 | # Also indentation by a single tab
|
|---|
| 3 |
|
|---|
| 4 | GRAPHTESTSSOURCES = \
|
|---|
| 5 | ../Graph/unittests/AdjacencyListUnitTest.cpp \
|
|---|
| 6 | ../Graph/unittests/BondGraphUnitTest.cpp
|
|---|
| 7 |
|
|---|
| 8 | GRAPHTESTSHEADERS = \
|
|---|
| 9 | ../Graph/unittests/AdjacencyListUnitTest.hpp \
|
|---|
| 10 | ../Graph/unittests/BondGraphUnitTest.hpp
|
|---|
| 11 |
|
|---|
| 12 | GRAPHTESTS = \
|
|---|
| 13 | AdjacencyListUnitTest \
|
|---|
| 14 | BondGraphUnitTest
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 | TESTS += $(GRAPHTESTS)
|
|---|
| 18 | check_PROGRAMS += $(GRAPHTESTS)
|
|---|
| 19 | noinst_PROGRAMS += $(GRAPHTESTS)
|
|---|
| 20 |
|
|---|
| 21 | GRAPHLIBS = \
|
|---|
| 22 | ../libMolecuilderUI.la \
|
|---|
| 23 | ../libMolecuilderGraph.la
|
|---|
| 24 | if CONDJOBMARKET
|
|---|
| 25 | GRAPHLIBS += \
|
|---|
| 26 | ../libMolecuilderJobs.la
|
|---|
| 27 | endif
|
|---|
| 28 | GRAPHLIBS += \
|
|---|
| 29 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
|---|
| 30 | ${CodePatterns_LIBS} \
|
|---|
| 31 | $(BOOST_LIB)
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 | AdjacencyListUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 35 | ../Graph/unittests/AdjacencyListUnitTest.cpp \
|
|---|
| 36 | ../Graph/unittests/AdjacencyListUnitTest.hpp
|
|---|
| 37 | AdjacencyListUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 38 |
|
|---|
| 39 | BondGraphUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 40 | ../Graph/unittests/BondGraphUnitTest.cpp \
|
|---|
| 41 | ../Graph/unittests/BondGraphUnitTest.hpp
|
|---|
| 42 | BondGraphUnitTest_LDADD = ${GRAPHLIBS}
|
|---|
| 43 |
|
|---|
| 44 |
|
|---|
| 45 |
|
|---|
| 46 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.