From 0793267bf0750ef90087b66796ebbf1488f1e9ce Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Tue, 21 Feb 2006 07:38:14 +0000 Subject: [PATCH] Add BOOST_PYTHON_STATIC_LIB and BOOST_PYTHON_DYNAMIC_LIB to usage requirements, as appropriate. [SVN r33053] --- build/Jamfile.v2 | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index ab40a949..66427745 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -26,7 +26,7 @@ project boost/python ; lib boost_python - : + : # sources numeric.cpp list.cpp long.cpp @@ -56,10 +56,15 @@ lib boost_python wrapper.cpp import.cpp exec.cpp - : static:BOOST_PYTHON_STATIC_LIB + : # requirements + static:BOOST_PYTHON_STATIC_LIB BOOST_PYTHON_SOURCE - /python//python - : shared + /python//python + : # default build + shared + : # usage requirements + static:BOOST_PYTHON_STATIC_LIB + shared:BOOST_PYTHON_DYNAMIC_LIB ; } else