diff --git a/example/tutorial/Jamroot b/example/tutorial/Jamroot index 2e7ffe57..1a70cb91 100644 --- a/example/tutorial/Jamroot +++ b/example/tutorial/Jamroot @@ -26,6 +26,14 @@ project # source files after the colon separated by spaces. python-extension hello_ext : hello.cpp ; +# Put the extension and Boost.Python DLL in the current directory, so +# that running script by hand works. +install convenient_copy + : hello_ext + : on SHARED_LIB PYTHON_EXTENSION + . + ; + # A little "rule" (function) to clean up the syntax of declaring tests # of these extension modules. local rule run-test ( test-name : sources + )