From 217e4ca8f82ce1e394a07408b02381cb6a2b5dfa Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 31 May 2007 13:49:45 +0000 Subject: [PATCH] Repair auto-configuration and allow this project to work with --build-dir [SVN r37829] --- example/quickstart/Jamroot | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/example/quickstart/Jamroot b/example/quickstart/Jamroot index e514941d..b3f73b8a 100755 --- a/example/quickstart/Jamroot +++ b/example/quickstart/Jamroot @@ -5,13 +5,17 @@ # Specify the path to the Boost project. If you move this project, # adjust the path to refer to the Boost root directory. use-project boost - : ../../../.. ; + : s:/rcboost ; # Set up the project-wide requirements that everything uses the # boost_python library defined in the project whose global ID is # /boost/python. -project - : requirements /boost/python//boost_python ; +project boost-python-quickstart + : requirements /boost/python//boost_python + ; + +# Make the definition of the python-extension rule available +import python ; # Declare a Python extension called hello. python-extension extending : extending.cpp ;