boost-build.jam 851 B

1234567891011121314151617
  1. # Copyright (C) 2002-2003 David Abrahams.
  2. # Copyright (C) 2002-2003 Vladimir Prus.
  3. # Copyright (C) 2003,2007 Rene Rivera.
  4. # Use, modification and distribution are subject to the
  5. # Boost Software License, Version 1.0. (See accompanying file
  6. # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. # This is the initial file loaded by Boost Jam when run from any Boost library
  8. # folder. It allows us to choose which Boost Build installation to use for
  9. # building Boost libraries. Unless explicitly selected using a command-line
  10. # option, the version included with the Boost library distribution is used (as
  11. # opposed to any other Boost Build version installed on the user's system).
  12. BOOST_ROOT = $(.boost-build-file:D) ;
  13. BOOST_BUILD = [ MATCH --boost-build=(.*) : $(ARGV) ] ;
  14. BOOST_BUILD ?= tools/build/src ;
  15. boost-build $(BOOST_BUILD) ;
粤ICP备19079148号