From cae31b538005aee1179a21eac97ef70e1a102427 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Mon, 27 Sep 2010 16:27:16 +0000 Subject: [PATCH] Make extension copied to current directory, for convenient testing [SVN r65638] --- example/tutorial/Jamroot | 8 ++++++++ 1 file changed, 8 insertions(+) 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 + )