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

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

Added unit test for BoostGraphCreator.

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