File: Jamrules

package info (click to toggle)
boost 1.33.1-10
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 100,948 kB
  • ctags: 145,103
  • sloc: cpp: 573,492; xml: 49,055; python: 15,626; ansic: 13,588; sh: 2,099; yacc: 858; makefile: 660; perl: 427; lex: 111; csh: 6
file content (36 lines) | stat: -rwxr-xr-x 1,512 bytes parent folder | download | duplicates (2)
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
26
27
28
29
30
31
32
33
34
35
36
# Copyright David Abrahams 2003. See accompanying LICENSE for terms
# and conditions of use.

# If you move this example from its place in the Boost tree, edit this
# path to point at the root directory of your Boost installation (the
# one containing a subdirectory called "boost/" and a sub-subdirectory
# "boost/python/" full of .hpp files).  Absolute paths work, too.
#
path-global BOOST_ROOT : ../../.. ;

# Boost.Python configuration variables, as described in
# http://www.boost.org/libs/python/doc/building.html#configuration.
# Usually you don't need to set these; the defaults will work.  If you
# do set them, try to change as few of them as possible, starting with
# the first ones.

  # PYTHON_VERSION = <the two-part Major.Minor version number, e.g. 2.2> ;
  # PYTHON_ROOT = <root directory of your Python installation, e.g. /usr> ;
  # PYTHON_INCLUDES = <path to Python #include directories> ;
  # PYTHON_LIB_PATH = <path to Python library object> ;

# You may need to configure your compiler toolset, especially if you
# want to build with a compiler that is not the "system default" or if
# it is installed in a nonstandard place; see
# http://www.boost.org/more/getting_started.html#Configuring for
# details.  

# Makes a project id for boost so that other Boost.Build projects can
# refer to it by name.
#
project boost : $(BOOST_ROOT) ;

# Change this setting to have all your built products placed under a
# single directory:
#
# ALL_LOCATE_TARGET = <root directory for all built products>