2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 04:22:16 +00:00

Make the library modular usable.

This commit is contained in:
Rene Rivera
2024-03-11 08:38:16 -05:00
committed by Stefan Seefeld
parent 99a5352b5c
commit f6d20e1099
4 changed files with 76 additions and 37 deletions

42
build.jam Normal file
View File

@@ -0,0 +1,42 @@
# Copyright René Ferdinand Rivera Morell 2024
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
import project ;
project /boost/python
: common-requirements
<source>/boost/align//boost_align
<source>/boost/bind//boost_bind
<source>/boost/config//boost_config
<source>/boost/conversion//boost_conversion
<source>/boost/core//boost_core
<source>/boost/detail//boost_detail
<source>/boost/foreach//boost_foreach
<source>/boost/function//boost_function
<source>/boost/graph//boost_graph
<source>/boost/integer//boost_integer
<source>/boost/iterator//boost_iterator
<source>/boost/lexical_cast//boost_lexical_cast
<source>/boost/mpl//boost_mpl
<source>/boost/numeric_conversion//boost_numeric_conversion
<source>/boost/preprocessor//boost_preprocessor
<source>/boost/property_map//boost_property_map
<source>/boost/smart_ptr//boost_smart_ptr
<source>/boost/static_assert//boost_static_assert
<source>/boost/tuple//boost_tuple
<source>/boost/type_traits//boost_type_traits
<source>/boost/utility//boost_utility
<include>include
;
explicit
[ alias boost_python : build//boost_python ]
[ alias boost_numpy : build//boost_numpy ]
[ alias all : boost_python boost_numpy test ]
;
call-if : boost-library python
: install boost_python boost_numpy
;