Skip to content

Commit 17b0c81

Browse files
committed
improved comments in-line
[SVN r22628]
1 parent 79c7d73 commit 17b0c81

3 files changed

Lines changed: 40 additions & 3 deletions

File tree

example/Jamfile.v2

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
1+
# This is the Jamfile for Boost.Build v2, which is currently in
2+
# prerelease. Ignore this file unless you are a bleading edge sort of
3+
# person.
24
use-project /boost/python : ../build ;
35

46
project

example/Jamrules

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,29 @@
11
# Copyright David Abrahams 2003. See accompanying LICENSE for terms
22
# and conditions of use.
33

4-
# Edit this path to point at the root directory of your Boost
5-
# installation. Absolute paths work, too.
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/" that contains .hpp files. Absolute paths work, too.
68
path-global BOOST_ROOT : ../../.. ;
9+
10+
# Boost.Python configuration variables, as described in
11+
# http://www.boost.org/libs/python/doc/building.html. Usually you
12+
# don't need to set these; the defaults will work. If you do set
13+
# them, try to change as few of them as possible, starting with the
14+
# first ones.
15+
16+
# PYTHON_VERSION = <the two-part Major.Minor version number, e.g. 2.2> ;
17+
# PYTHON_ROOT = <path to root directory of your Python installation> ;
18+
# PYTHON_INCLUDES = <path to Python #include directories> ;
19+
# PYTHON_LIB_PATH = <path to Python library object> ;
20+
21+
# You may need to configure your compiler toolset, especially if you
22+
# want to build with a compiler that is not the "system default" or if
23+
# it is installed in a nonstandard place; see
24+
# http://www.boost.org/more/getting_started.html#Configuring for
25+
# details.
26+
27+
# Makes a project id for boost so that other Boost.Build projects can
28+
# refer to it by name.
729
project boost : $(BOOST_ROOT) ;

example/README

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,16 @@ getting_started1.cpp and getting_started2.cpp.
44
bjam -sTOOLS=your-toolset test
55

66
in this directory will build and run the examples.
7+
8+
Other configuration variables may need to be set as described in
9+
http://www.boost.org/libs/python/doc/building.html. These can be
10+
supplied by the environment, on the command-line with
11+
12+
-sVARIABLENAME=value
13+
14+
or in the local Jamrules file.
15+
16+
If you move this example from its place in the Boost development tree
17+
you'll need to edit at least one line in Jamrules and one line in
18+
boost-build.jam.
19+

0 commit comments

Comments
 (0)