mirror of
https://github.com/boostorg/move.git
synced 2025-07-29 20:07:13 +02:00
Merge branch 'grafikrobot-modular' into develop
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 ;
|
23
build.jam
Normal file
23
build.jam
Normal file
@ -0,0 +1,23 @@
|
||||
# Copyright René Ferdinand Rivera Morell 2023-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)
|
||||
|
||||
require-b2 5.2 ;
|
||||
|
||||
constant boost_dependencies :
|
||||
/boost/config//boost_config ;
|
||||
|
||||
project /boost/move
|
||||
: common-requirements
|
||||
<include>include
|
||||
;
|
||||
|
||||
explicit
|
||||
[ alias boost_move : : : : <library>$(boost_dependencies) ]
|
||||
[ alias all : boost_move example test ]
|
||||
;
|
||||
|
||||
call-if : boost-library move
|
||||
;
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Boost.Move library documentation Jamfile
|
||||
#
|
||||
# Copyright Ion Gaztanaga 2009.
|
||||
# Copyright Ion Gaztanaga 2009.
|
||||
# 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)
|
||||
@ -13,8 +13,8 @@ import quickbook ;
|
||||
|
||||
doxygen autodoc
|
||||
:
|
||||
[ glob ../../../boost/move/*.hpp ]
|
||||
[ glob ../../../boost/move/algo/*.hpp ]
|
||||
[ glob ../include/boost/move/*.hpp ]
|
||||
[ glob ../include/boost/move/algo/*.hpp ]
|
||||
:
|
||||
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
|
||||
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
|
||||
|
@ -9,6 +9,11 @@
|
||||
#
|
||||
import testing ;
|
||||
|
||||
project : requirements
|
||||
<library>/boost/container//boost_container
|
||||
<library>/boost/type_traits//boost_type_traits
|
||||
;
|
||||
|
||||
rule test_all
|
||||
{
|
||||
local all_rules = ;
|
||||
@ -25,7 +30,7 @@ rule test_all
|
||||
return $(all_rules) ;
|
||||
}
|
||||
|
||||
test-suite move_example : [ test_all r ]
|
||||
test-suite move_example : [ test_all r ]
|
||||
: <link>static
|
||||
;
|
||||
|
||||
|
||||
|
@ -9,6 +9,11 @@
|
||||
|
||||
import testing ;
|
||||
|
||||
project : requirements
|
||||
<library>/boost/core//boost_core
|
||||
<library>/boost/container//boost_container
|
||||
;
|
||||
|
||||
rule test_all
|
||||
{
|
||||
local all_rules = ;
|
||||
@ -26,4 +31,4 @@ rule test_all
|
||||
}
|
||||
|
||||
test-suite move_test : [ test_all r ] ;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user