File: Jamfile.v2

package info (click to toggle)
boost 1.32.0-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 93,952 kB
  • ctags: 128,458
  • sloc: cpp: 492,477; xml: 52,125; python: 13,519; ansic: 13,013; sh: 1,773; yacc: 853; makefile: 526; perl: 418; lex: 110; csh: 6
file content (71 lines) | stat: -rw-r--r-- 1,586 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Define SGB (stanford graph base top level directory) and 
# LEDA (also top level directory) at the command line of jam using -s

import modules ;

test-suite graph_test : 

    [ run transitive_closure_test.cpp ]
             
    [ compile adj_list_cc.cpp ]

    # adj_list_test needs some work -JGS
    # unit-test adj_list_test : adj_list_test.cpp  ;
    [ compile adj_matrix_cc.cpp ]

    [ run bfs.cpp ../../test/build//boost_test_exec_monitor ]

    [ compile bfs_cc.cpp ]

    [ run dfs.cpp ../../test/build//boost_test_exec_monitor ]

    [ compile dfs_cc.cpp ]

    [ compile dijkstra_cc.cpp ]

    [ compile edge_list_cc.cpp ]

    [ compile filtered_graph_cc.cpp ]

    [ run graph.cpp ]

    [ compile graph_concepts.cpp ]

    [ compile reverse_graph_cc.cpp ] 

    [ run subgraph.cpp ../../test/build//boost_test_exec_monitor ]

    [ run isomorphism.cpp ../../test/build//boost_test_exec_monitor ]

    [ run adjacency_matrix_test.cpp ]    

    [ compile vector_graph_cc.cpp ]

    [ compile copy.cpp ]
    
    [ compile property_iter.cpp ]    

    [ run bundled_properties.cpp ]
    ;

# Run SDB tests only when -sSDB= is set.
if [ modules.peek : SDB ] != ""
{
    local SDB_DEPENDCIES =
        <include>$(SGB) <library-file>$(SGB)/libgb.a  ;

    compile stanford_graph_cc.cpp 
        $(SDB_DEPENDCIES)  ;
}

# Run LEDA tests only when -sLEDA= is set.
if [ modules.peek : LEDA ] != ""
{
     local LEDA_DEPENDENCIES = 
        <include>$(LEDA)/incl 
        <library-file>$(LEDA)/libG.a
        ;

    compile leda_graph_cc.cpp  
       $(LEDA_DEPENDENCIES) ;
}