Jamrules 895 B

123456789101112131415161718192021
  1. # Boost.Build top level Jamrules
  2. # See tools/build/index.html for documentation.
  3. # Set some important global variables if they haven't already been set by the
  4. # user on the command-line or in the environment
  5. # Establish this as the root of the boost installation. Most targets will want
  6. # $(BOOST_ROOT) in their #include path. $(gTOP) is the name of the variable
  7. # containing the path from the invocation directory to the project root.
  8. BOOST_ROOT ?= $($(gTOP)) ;
  9. # Tell the build system where to find the rest of the build
  10. # system installation (e.g. toolset descriptions, variants)
  11. BOOST_BUILD_INSTALLATION ?= $(BOOST_ROOT)$(SLASH)tools$(SLASH)build ;
  12. # This variable will surely need to be set specific to your installation, though
  13. # we may be able to provide better defaults for some systems. It is used by the
  14. # toolset(s) that use STLport
  15. STLPORT_ROOT ?= c:/downloads/STLPort-0601 ;
粤ICP备19079148号