#   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
    ;

