Jamrules 1.1 KB

123456789101112131415161718192021222324252627
  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. # Transitional - allows us to use this Jamrules file with the new Jambase under
  6. # development
  7. path-global BOOST_ROOT : $(gPROJECT_ROOT) ;
  8. # Establish this as the root of the boost installation. Most targets will want
  9. # $(BOOST_ROOT) in their #include path. $(gTOP) is the name of the variable
  10. # containing the path from the invocation directory to the project root.
  11. path-global BOOST_ROOT : $($(gTOP)) ;
  12. # Tell the build system where to find the rest of the build
  13. # system installation (e.g. toolset descriptions, variants)
  14. BOOST_BUILD_PATH ?= $(BOOST_ROOT)/tools/build ;
  15. # This variable will surely need to be set specific to your installation, though
  16. # we may be able to provide better defaults for some systems. It is used by the
  17. # toolset(s) that use STLport
  18. STLPORT_ROOT ?= c:/downloads/STLPort-0601 ;
  19. # The current version of Boost.
  20. BOOST_VERSION = 1.27.0 ;
粤ICP备19079148号