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