source: src/Graph/unittests/Makefile.am@ 1356af

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 1356af was 6e5b8d, checked in by Frederik Heber <frederik.heber@…>, 8 years ago

Added BreadthFirstSearchGathererUnitTest.

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