Merge branch 'grafikrobot-modular' into develop

This commit is contained in:
Ion Gaztañaga
2024-08-18 23:48:48 +02:00
5 changed files with 39 additions and 17 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 ;

23
build.jam Normal file
View 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
;

View File

@ -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

View File

@ -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
;

View File

@ -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 ] ;