source: src/Graph/unittests/Makefile.am@ 0dc8bf2

Action_Thermostats Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Exclude_Hydrogens_annealWithBondGraph Fix_Verbose_Codepatterns ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool PythonUI_with_named_parameters Recreated_GuiChecks StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 0dc8bf2 was 0dc8bf2, 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.