Make the library modular usable.

This commit is contained in:
Rene Rivera
2024-03-11 08:38:17 -05:00
parent 6b81611b9d
commit 05d00ac951
4 changed files with 30 additions and 11 deletions

11
Jamfile
View File

@ -1,11 +0,0 @@
# Boost.Move Library Jamfile
#
# Copyright (c) 2018 James E. King III
#
# Use, modification, and distribution are subject to 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)
# please order by name to ease maintenance
build-project example ;
build-project test ;

20
build.jam Normal file
View File

@ -0,0 +1,20 @@
# 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/move
: common-requirements
<source>/boost/config//boost_config
<include>include
;
explicit
[ alias boost_move ]
[ alias all : boost_move example test ]
;
call-if : boost-library move
;

View File

@ -9,6 +9,11 @@
#
import testing ;
project : requirements
<source>/boost/container//boost_container
<source>/boost/type_traits//boost_type_traits
;
rule test_all
{
local all_rules = ;

View File

@ -9,6 +9,11 @@
import testing ;
project : requirements
<source>/boost/core//boost_core
<source>/boost/container//boost_container
;
rule test_all
{
local all_rules = ;