2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-20 16:52:15 +00:00
Files
python/example/tutorial/Jamfile
Dave Abrahams 7a9a3d30c9 Use the import rule
[SVN r19968]
2003-09-08 17:38:49 +00:00

15 lines
421 B
Plaintext

# Hello World Example from the tutorial
# [Joel de Guzman 10/9/2002]
# Specify our location in the boost project hierarchy
subproject libs/python/example/tutorial ;
# Include definitions needed for Python modules
import python ;
extension hello # Declare a Python extension called hello
: hello.cpp # source
<dll>../../build/boost_python # dependencies
;