|
1 | 1 | # Copyright David Abrahams 2003. See accompanying LICENSE for terms |
2 | 2 | # and conditions of use. |
3 | 3 |
|
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. |
6 | 8 | 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. |
7 | 29 | project boost : $(BOOST_ROOT) ; |
0 commit comments