From 3480aee9e7d8d443eb3922f847183b11fa194de5 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 25 Sep 2013 08:13:57 +0000 Subject: [PATCH] Initial modular patch, from Bjorn. [SVN r85884] --- example/Jamroot | 5 ++++- example/quickstart/Jamroot | 2 ++ example/tutorial/Jamroot | 5 ++++- 3 files changed, 10 insertions(+), 2 deletions(-) mode change 100755 => 100644 example/Jamroot mode change 100755 => 100644 example/quickstart/Jamroot diff --git a/example/Jamroot b/example/Jamroot old mode 100755 new mode 100644 index 0d5ad9dc..27ac49e8 --- 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 old mode 100755 new mode 100644 index 569dae13..9b57a009 --- 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.