Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.

libs/python/example/tutorial/Jamfile

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