From 6349a3f39fe60c71b23fe53603275e3ef1f5dc58 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 25 Sep 2013 08:35:32 +0000 Subject: [PATCH] Modularization patch from Bjorn [SVN r85889] --- example/Jamroot | 5 ++++- example/quickstart/Jamroot | 2 ++ example/tutorial/Jamroot | 5 ++++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/example/Jamroot b/example/Jamroot index 0d5ad9dc..27ac49e8 100644 --- a/example/Jamroot +++ b/example/Jamroot @@ -11,7 +11,10 @@ use-project boost # boost_python library from the project whose global ID is # /boost/python. project - : requirements /boost/python//boost_python ; + : requirements /boost/python//boost_python + /boost//headers + : usage-requirements /boost//headers + ; # Declare the three extension modules. You can specify multiple # source files after the colon separated by spaces. diff --git a/example/quickstart/Jamroot b/example/quickstart/Jamroot index 569dae13..9b57a009 100644 --- a/example/quickstart/Jamroot +++ b/example/quickstart/Jamroot @@ -12,6 +12,8 @@ use-project boost # /boost/python. project boost-python-quickstart : requirements /boost/python//boost_python + /boost//headers + : usage-requirements /boost//headers ; # Make the definition of the python-extension rule available diff --git a/example/tutorial/Jamroot b/example/tutorial/Jamroot index 1a70cb91..ac5e1f03 100644 --- a/example/tutorial/Jamroot +++ b/example/tutorial/Jamroot @@ -20,7 +20,10 @@ use-project boost # boost_python library from the project whose global ID is # /boost/python. project - : requirements /boost/python//boost_python ; + : requirements /boost/python//boost_python + /boost//headers + : usage-requirements /boost//headers + ; # Declare the three extension modules. You can specify multiple # source files after the colon separated by spaces.