source: src/Graph/unittests/Makefile.am@ 966ce7

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