mirror of
https://github.com/boostorg/move.git
synced 2025-07-30 04:17:13 +02:00
Make the library modular usable.
This commit is contained in:
11
Jamfile
11
Jamfile
@ -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
20
build.jam
Normal 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
|
||||
;
|
@ -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 = ;
|
||||
|
@ -9,6 +9,11 @@
|
||||
|
||||
import testing ;
|
||||
|
||||
project : requirements
|
||||
<source>/boost/core//boost_core
|
||||
<source>/boost/container//boost_container
|
||||
;
|
||||
|
||||
rule test_all
|
||||
{
|
||||
local all_rules = ;
|
||||
|
Reference in New Issue
Block a user