Jamfile.v2 711 B

1234567891011121314151617181920212223242526272829
  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. import mpi ;
  7. project boost/graph
  8. : requirements <include>../src
  9. : source-location ../src
  10. ;
  11. lib boost_graph
  12. :
  13. read_graphviz_new.cpp
  14. graphml.cpp
  15. :
  16. <library>../../regex/build//boost_regex
  17. <link>shared:<define>BOOST_GRAPH_DYN_LINK=1
  18. # Without these flags, MSVC 7.1 and 8.0 crash
  19. # User reports that VC++ 8.0 does not fail anymore, so that is removed
  20. <toolset>msvc-7.1:<cxxflags>-GR-
  21. <toolset>sun:<build>no
  22. :
  23. :
  24. ;
  25. boost-install boost_graph ;