Jamrules 869 B

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