source: src/Graph/unittests/Makefile.am@ c52abd

Candidate_v1.6.1 ChemicalSpaceEvaluator
Last change on this file since c52abd was c52abd, checked in by Frederik Heber <frederik.heber@…>, 7 years ago

Added unit test for Graph6Reader.

  • Property mode set to 100644
File size: 2.1 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4GRAPHTESTSSOURCES = \
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
11GRAPHTESTSHEADERS = \
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
18GRAPHTESTS = \
19 AdjacencyListUnitTest \
20 BondGraphUnitTest \
21 BoostGraphCreatorUnitTest \
22 BreadthFirstSearchGathererUnitTest \
23 Graph6ReaderUnitTest
24
25TESTS += $(GRAPHTESTS)
26check_PROGRAMS += $(GRAPHTESTS)
27noinst_PROGRAMS += $(GRAPHTESTS)
28
29GRAPHLIBS = \
30 libUnitTest.la \
31 ../libMolecuilderGraph.la \
32 ../libMolecuilder.la \
33 ../libMolecuilderUI.la
34if CONDJOBMARKET
35GRAPHLIBS += \
36 ../libMolecuilderJobs.la \
37 ../libMolecuilderJobs_Work.la
38endif
39GRAPHLIBS += \
40 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
41 ${CodePatterns_LIBS} \
42 $(BOOST_LIB)
43
44
45AdjacencyListUnitTest_SOURCES = \
46 ../Graph/unittests/AdjacencyListUnitTest.cpp \
47 ../Graph/unittests/AdjacencyListUnitTest.hpp
48AdjacencyListUnitTest_LDADD = ${ALLLIBS}
49
50BondGraphUnitTest_SOURCES = \
51 ../Graph/unittests/BondGraphUnitTest.cpp \
52 ../Graph/unittests/BondGraphUnitTest.hpp
53BondGraphUnitTest_LDADD = ${GRAPHLIBS}
54
55BoostGraphCreatorUnitTest_SOURCES = \
56 ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \
57 ../Graph/unittests/BoostGraphCreatorUnitTest.hpp
58BoostGraphCreatorUnitTest_LDADD = ${GRAPHLIBS}
59
60BreadthFirstSearchGathererUnitTest_SOURCES = \
61 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \
62 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp
63BreadthFirstSearchGathererUnitTest_LDADD = ${GRAPHLIBS}
64
65Graph6ReaderUnitTest_SOURCES = \
66 ../Graph/unittests/Graph6ReaderUnitTest.cpp \
67 ../Graph/unittests/Graph6ReaderUnitTest.hpp
68Graph6ReaderUnitTest_LDADD = ${GRAPHLIBS}
69
70#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.