File: Jamrules

package info (click to toggle)
boost 1.27.0-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 19,908 kB
  • ctags: 26,546
  • sloc: cpp: 122,225; ansic: 10,956; python: 4,412; sh: 855; yacc: 803; makefile: 257; perl: 165; lex: 90; csh: 6
file content (25 lines) | stat: -rw-r--r-- 1,031 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Boost.Build top level Jamrules

# See tools/build/index.html for documentation.

# Set some important global variables if they haven't already been set by the
# user on the command-line or in the environment

# Transitional - allows us to use this Jamrules file with the new Jambase under
# development
path-global BOOST_ROOT : $(gPROJECT_ROOT) ;

# Establish this as the root of the boost installation. Most targets will want
# $(BOOST_ROOT) in their #include path.  $(gTOP) is the name of the variable
# containing the path from the invocation directory to the project root.
path-global BOOST_ROOT : $($(gTOP)) ;

# Tell the build system where to find the rest of the build
# system installation (e.g. toolset descriptions, variants)
BOOST_BUILD_INSTALLATION ?= $(BOOST_ROOT)/tools/build ;

# This variable will surely need to be set specific to your installation, though
# we may be able to provide better defaults for some systems. It is used by the
# toolset(s) that use STLport
STLPORT_ROOT ?= c:/downloads/STLPort-0601 ;