mirror of
https://github.com/boostorg/python.git
synced 2026-01-20 16:52:15 +00:00
15 lines
421 B
Plaintext
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
|
|
;
|
|
|