2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-28 07:12:14 +00:00
Files
graph/test/Jamfile
Jeremy Siek fdb0f8e6b4 updated
[SVN r14997]
2002-08-20 15:55:52 +00:00

48 lines
1.7 KiB
Plaintext

subproject libs/graph/test ;
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
# Define SGB (stanford graph base top level directory) and
# LEDA (also top level directory) at the command line of jam using -s
unit-test transitive_closure_test : transitive_closure_test.cpp : <sysinclude>$(BOOST_ROOT) ;
compile adj_list_cc.cpp : <sysinclude>$(BOOST_ROOT) ;
# adj_list_test needs some work -JGS
# unit-test adj_list_test : adj_list_test.cpp : <sysinclude>$(BOOST_ROOT) ;
compile adj_matrix_cc.cpp : <sysinclude>$(BOOST_ROOT) ;
unit-test bfs : bfs.cpp <lib>../../test/build/test_exec_monitor : <sysinclude>$(BOOST_ROOT) ;
compile bfs_cc.cpp : <sysinclude>$(BOOST_ROOT) ;
unit-test dfs : dfs.cpp <lib>../../test/build/test_exec_monitor : <sysinclude>$(BOOST_ROOT) ;
compile dfs_cc.cpp : <sysinclude>$(BOOST_ROOT) ;
compile dijkstra_cc.cpp : <sysinclude>$(BOOST_ROOT) ;
compile edge_list_cc.cpp : <sysinclude>$(BOOST_ROOT) ;
compile filtered_graph_cc.cpp : <sysinclude>$(BOOST_ROOT) ;
unit-test graph : graph.cpp : <sysinclude>$(BOOST_ROOT) ;
compile graph_concepts.cpp : <sysinclude>$(BOOST_ROOT) ;
compile leda_graph_cc.cpp : <sysinclude>$(BOOST_ROOT) :
<include>$(LEDA)/incl <library-file>$(LEDA)/libG.a ;
compile reverse_graph_cc.cpp : <sysinclude>$(BOOST_ROOT) ;
compile stanford_graph_cc.cpp : <sysinclude>$(BOOST_ROOT)
<include>$(SGB) <library-file>$(SGB)/libgb.a ;
unit-test subgraph : subgraph.cpp <lib>../../test/build/test_exec_monitor : <sysinclude>$(BOOST_ROOT) ;
unit-test isomorphism : isomorphism.cpp <lib>../../test/build/test_exec_monitor : <sysinclude>$(BOOST_ROOT) ;
compile vector_graph_cc.cpp : <sysinclude>$(BOOST_ROOT) ;