2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-30 20:12:37 +00:00

tutorial update

[SVN r40734]
This commit is contained in:
Joel de Guzman
2007-11-04 00:12:29 +00:00
parent 6a3085ad5d
commit 597dfc586b
13 changed files with 686 additions and 806 deletions

View File

@@ -4,7 +4,7 @@
# Specify the path to the Boost project. If you move this project,
# adjust this path to refer to the Boost root directory.
use-project boost
use-project boost
: ../../../.. ;
# Set up the project-wide requirements that everything uses the
@@ -13,6 +13,19 @@ use-project boost
project
: requirements <library>/boost/python//boost_python ;
# Declare a Python extension called hello.
python-extension hello : hello.cpp ;
# Declare the three extension modules. You can specify multiple
# source files after the colon separated by spaces.
python-extension hello_ext : hello.cpp ;
# A little "rule" (function) to clean up the syntax of declaring tests
# of these extension modules.
local rule run-test ( test-name : sources + )
{
import testing ;
testing.make-test run-pyd : $(sources) : : $(test-name) ;
}
# Declare test targets
run-test hello : hello_ext hello.py ;