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 | ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \
|
---|
8 | ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \
|
---|
9 | ../Graph/unittests/Graph6ReaderUnitTest.cpp
|
---|
10 |
|
---|
11 | GRAPHTESTSHEADERS = \
|
---|
12 | ../Graph/unittests/AdjacencyListUnitTest.hpp \
|
---|
13 | ../Graph/unittests/BondGraphUnitTest.hpp \
|
---|
14 | ../Graph/unittests/BoostGraphCreatorUnitTest.hpp \
|
---|
15 | ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp \
|
---|
16 | ../Graph/unittests/Graph6ReaderUnitTest.hpp
|
---|
17 |
|
---|
18 | GRAPHTESTS = \
|
---|
19 | AdjacencyListUnitTest \
|
---|
20 | BondGraphUnitTest \
|
---|
21 | BoostGraphCreatorUnitTest \
|
---|
22 | BreadthFirstSearchGathererUnitTest \
|
---|
23 | Graph6ReaderUnitTest
|
---|
24 |
|
---|
25 | TESTS += $(GRAPHTESTS)
|
---|
26 | check_PROGRAMS += $(GRAPHTESTS)
|
---|
27 | noinst_PROGRAMS += $(GRAPHTESTS)
|
---|
28 |
|
---|
29 | GRAPHLIBS = \
|
---|
30 | libUnitTest.la \
|
---|
31 | ../libMolecuilderGraph.la \
|
---|
32 | ../libMolecuilder.la \
|
---|
33 | ../libMolecuilderUI.la
|
---|
34 | if CONDJOBMARKET
|
---|
35 | GRAPHLIBS += \
|
---|
36 | ../libMolecuilderJobs.la \
|
---|
37 | ../libMolecuilderJobs_Work.la
|
---|
38 | endif
|
---|
39 | GRAPHLIBS += \
|
---|
40 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
41 | ${CodePatterns_LIBS} \
|
---|
42 | $(BOOST_LIB)
|
---|
43 |
|
---|
44 |
|
---|
45 | AdjacencyListUnitTest_SOURCES = \
|
---|
46 | ../Graph/unittests/AdjacencyListUnitTest.cpp \
|
---|
47 | ../Graph/unittests/AdjacencyListUnitTest.hpp
|
---|
48 | AdjacencyListUnitTest_LDADD = ${ALLLIBS}
|
---|
49 |
|
---|
50 | BondGraphUnitTest_SOURCES = \
|
---|
51 | ../Graph/unittests/BondGraphUnitTest.cpp \
|
---|
52 | ../Graph/unittests/BondGraphUnitTest.hpp
|
---|
53 | BondGraphUnitTest_LDADD = ${GRAPHLIBS}
|
---|
54 |
|
---|
55 | BoostGraphCreatorUnitTest_SOURCES = \
|
---|
56 | ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \
|
---|
57 | ../Graph/unittests/BoostGraphCreatorUnitTest.hpp
|
---|
58 | BoostGraphCreatorUnitTest_LDADD = ${GRAPHLIBS}
|
---|
59 |
|
---|
60 | BreadthFirstSearchGathererUnitTest_SOURCES = \
|
---|
61 | ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \
|
---|
62 | ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp
|
---|
63 | BreadthFirstSearchGathererUnitTest_LDADD = ${GRAPHLIBS}
|
---|
64 |
|
---|
65 | Graph6ReaderUnitTest_SOURCES = \
|
---|
66 | ../Graph/unittests/Graph6ReaderUnitTest.cpp \
|
---|
67 | ../Graph/unittests/Graph6ReaderUnitTest.hpp
|
---|
68 | Graph6ReaderUnitTest_LDADD = ${GRAPHLIBS}
|
---|
69 |
|
---|
70 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|