source: src/Graph/unittests/Makefile.am@ 89235ea

ForceAnnealing_oldresults IndependentFragmentGrids_IntegrationTest
Last change on this file since 89235ea was 89235ea, checked in by Frederik Heber <frederik.heber@…>, 8 years ago

Added BreadthFirstSearchGathererUnitTest.

  • Property mode set to 100644
File size: 1.5 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 \
[89235ea]6 ../Graph/unittests/BondGraphUnitTest.cpp \
7 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp
[629e43]8
9GRAPHTESTSHEADERS = \
[0fad93]10 ../Graph/unittests/AdjacencyListUnitTest.hpp \
[89235ea]11 ../Graph/unittests/BondGraphUnitTest.hpp \
12 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp
[629e43]13
14GRAPHTESTS = \
[0fad93]15 AdjacencyListUnitTest \
[89235ea]16 BondGraphUnitTest \
17 BreadthFirstSearchGathererUnitTest
[629e43]18
19TESTS += $(GRAPHTESTS)
20check_PROGRAMS += $(GRAPHTESTS)
21noinst_PROGRAMS += $(GRAPHTESTS)
22
23GRAPHLIBS = \
[e9e86f]24 libUnitTest.la \
[89235ea]25 ../libMolecuilderGraph.la \
[748fc7]26 ../libMolecuilder.la \
[89235ea]27 ../libMolecuilderUI.la
[eb0d77]28if CONDJOBMARKET
29GRAPHLIBS += \
[cb98f1]30 ../libMolecuilderJobs.la \
31 ../libMolecuilderJobs_Work.la
[eb0d77]32endif
33GRAPHLIBS += \
[4ecb2d]34 $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
[629e43]35 ${CodePatterns_LIBS} \
36 $(BOOST_LIB)
37
38
[e9e86f]39AdjacencyListUnitTest_SOURCES = \
[0fad93]40 ../Graph/unittests/AdjacencyListUnitTest.cpp \
41 ../Graph/unittests/AdjacencyListUnitTest.hpp
42AdjacencyListUnitTest_LDADD = ${ALLLIBS}
43
[e9e86f]44BondGraphUnitTest_SOURCES = \
[629e43]45 ../Graph/unittests/BondGraphUnitTest.cpp \
46 ../Graph/unittests/BondGraphUnitTest.hpp
47BondGraphUnitTest_LDADD = ${GRAPHLIBS}
48
[89235ea]49BreadthFirstSearchGathererUnitTest_SOURCES = \
50 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \
51 ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp
52BreadthFirstSearchGathererUnitTest_LDADD = ${GRAPHLIBS}
[629e43]53
54
55#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.