Make the library modular usable.

This commit is contained in:
Rene Rivera
2024-03-11 08:27:02 -05:00
parent ecc47cb42c
commit 36bba5af2d
2 changed files with 25 additions and 1 deletions

24
build.jam Normal file
View File

@ -0,0 +1,24 @@
# Copyright René Ferdinand Rivera Morell 2023
# 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/array
: common-requirements
<source>/boost/assert//boost_assert
<source>/boost/config//boost_config
<source>/boost/core//boost_core
<source>/boost/static_assert//boost_static_assert
<source>/boost/throw_exception//boost_throw_exception
<include>include
;
explicit
[ alias boost_array ]
[ alias all : boost_array test ]
;
call-if : boost-library array
;

View File

@ -15,6 +15,6 @@ run array7.cpp ;
# run array_constexpr.cpp ;
compile-fail array_getfail1.cpp ;
compile-fail array_getfail2.cpp ;
run array_hash.cpp ;
run array_hash.cpp /boost/container_hash//boost_container_hash ;
run quick.cpp ;