]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/graph/build/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / graph / build / Jamfile.v2
1 # Copyright (c) 2002 Trustees of Indiana University
2 #
3 # Distributed under the Boost Software License, Version 1.0.
4 # (See accompanying file LICENSE_1_0.txt or copy at
5 # http://www.boost.org/LICENSE_1_0.txt)
6
7 import mpi ;
8
9 project boost/graph
10 : requirements <include>../src
11 : source-location ../src
12 ;
13
14 lib boost_graph
15 :
16 read_graphviz_new.cpp
17 graphml.cpp
18 :
19 <library>../../regex/build//boost_regex
20 <link>shared:<define>BOOST_GRAPH_DYN_LINK=1
21 # Without these flags, MSVC 7.1 and 8.0 crash
22 # User reports that VC++ 8.0 does not fail anymore, so that is removed
23 <toolset>msvc-7.1:<cxxflags>-GR-
24 <toolset>sun:<build>no
25 :
26 :
27 ;
28
29 boost-install boost_graph ;