source: src/Graph/unittests/Makefile.am

Candidate_v1.6.1
Last change on this file 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
RevLine 
[629e43]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4GRAPHTESTSSOURCES = \
[0fad93]5 ../Graph/unittests/AdjacencyListUnitTest.cpp \
[6e5b8d]6 ../Graph/unittests/BondGraphUnitTest.cpp \
[0dc8bf2]7 ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \
[c52abd]8 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \
9 ../Graph/unittests/Graph6ReaderUnitTest.cpp
[629e43]10
11GRAPHTESTSHEADERS = \
[0fad93]12 ../Graph/unittests/AdjacencyListUnitTest.hpp \
[6e5b8d]13 ../Graph/unittests/BondGraphUnitTest.hpp \
[0dc8bf2]14 ../Graph/unittests/BoostGraphCreatorUnitTest.hpp \
[c52abd]15 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp \
16 ../Graph/unittests/Graph6ReaderUnitTest.hpp
[629e43]17
18GRAPHTESTS = \
[0fad93]19 AdjacencyListUnitTest \
[6e5b8d]20 BondGraphUnitTest \
[0dc8bf2]21 BoostGraphCreatorUnitTest \
[c52abd]22 BreadthFirstSearchGathererUnitTest \
23 Graph6ReaderUnitTest
[629e43]24
25TESTS += $(GRAPHTESTS)
26check_PROGRAMS += $(GRAPHTESTS)
27noinst_PROGRAMS += $(GRAPHTESTS)
28
29GRAPHLIBS = \
[e9e86f]30 libUnitTest.la \
[6e5b8d]31 ../libMolecuilderGraph.la \
[748fc7]32 ../libMolecuilder.la \
[6e5b8d]33 ../libMolecuilderUI.la
[eb0d77]34if CONDJOBMARKET
35GRAPHLIBS += \
[cb98f1]36 ../libMolecuilderJobs.la \
37 ../libMolecuilderJobs_Work.la
[eb0d77]38endif
39GRAPHLIBS += \
[4ecb2d]40 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
[629e43]41 ${CodePatterns_LIBS} \
42 $(BOOST_LIB)
43
44
[e9e86f]45AdjacencyListUnitTest_SOURCES = \
[0fad93]46 ../Graph/unittests/AdjacencyListUnitTest.cpp \
47 ../Graph/unittests/AdjacencyListUnitTest.hpp
48AdjacencyListUnitTest_LDADD = ${ALLLIBS}
49
[e9e86f]50BondGraphUnitTest_SOURCES = \
[629e43]51 ../Graph/unittests/BondGraphUnitTest.cpp \
52 ../Graph/unittests/BondGraphUnitTest.hpp
53BondGraphUnitTest_LDADD = ${GRAPHLIBS}
54
[0dc8bf2]55BoostGraphCreatorUnitTest_SOURCES = \
56 ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \
57 ../Graph/unittests/BoostGraphCreatorUnitTest.hpp
58BoostGraphCreatorUnitTest_LDADD = ${GRAPHLIBS}
59
[6e5b8d]60BreadthFirstSearchGathererUnitTest_SOURCES = \
61 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \
62 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp
63BreadthFirstSearchGathererUnitTest_LDADD = ${GRAPHLIBS}
[629e43]64
[c52abd]65Graph6ReaderUnitTest_SOURCES = \
66 ../Graph/unittests/Graph6ReaderUnitTest.cpp \
67 ../Graph/unittests/Graph6ReaderUnitTest.hpp
68Graph6ReaderUnitTest_LDADD = ${GRAPHLIBS}
[629e43]69
70#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.