Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/python/example/Jamrules @ 20

Last change on this file since 20 was 12, checked in by landauf, 18 years ago

added boost

  • Property svn:executable set to *
File size: 1.5 KB
Line 
1# Copyright David Abrahams 2003. See accompanying LICENSE for terms
2# and conditions of use.
3
4# If you move this example from its place in the Boost tree, edit this
5# path to point at the root directory of your Boost installation (the
6# one containing a subdirectory called "boost/" and a sub-subdirectory
7# "boost/python/" full of .hpp files).  Absolute paths work, too.
8#
9path-global BOOST_ROOT : ../../.. ;
10
11# Boost.Python configuration variables, as described in
12# http://www.boost.org/libs/python/doc/building.html#configuration.
13# Usually you don't need to set these; the defaults will work.  If you
14# do set them, try to change as few of them as possible, starting with
15# the first ones.
16
17  # PYTHON_VERSION = <the two-part Major.Minor version number, e.g. 2.2> ;
18  # PYTHON_ROOT = <root directory of your Python installation, e.g. /usr> ;
19  # PYTHON_INCLUDES = <path to Python #include directories> ;
20  # PYTHON_LIB_PATH = <path to Python library object> ;
21
22# You may need to configure your compiler toolset, especially if you
23# want to build with a compiler that is not the "system default" or if
24# it is installed in a nonstandard place; see
25# http://www.boost.org/more/getting_started.html#Configuring for
26# details. 
27
28# Makes a project id for boost so that other Boost.Build projects can
29# refer to it by name.
30#
31project boost : $(BOOST_ROOT) ;
32
33# Change this setting to have all your built products placed under a
34# single directory:
35#
36# ALL_LOCATE_TARGET = <root directory for all built products>
Note: See TracBrowser for help on using the repository browser.