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 7import mpi ; 8 9project boost/graph 10 : requirements <include>../src 11 : source-location ../src 12 ; 13 14lib 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 29boost-install boost_graph ; 30