mirror of
https://github.com/boostorg/move.git
synced 2025-07-31 21:04:27 +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
|
||||||
|
;
|
||||||
|
|
@@ -13,8 +13,8 @@ import quickbook ;
|
|||||||
|
|
||||||
doxygen autodoc
|
doxygen autodoc
|
||||||
:
|
:
|
||||||
[ glob ../../../boost/move/*.hpp ]
|
[ glob ../include/boost/move/*.hpp ]
|
||||||
[ glob ../../../boost/move/algo/*.hpp ]
|
[ glob ../include/boost/move/algo/*.hpp ]
|
||||||
:
|
:
|
||||||
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
|
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
|
||||||
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
|
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
|
||||||
|
@@ -9,6 +9,11 @@
|
|||||||
#
|
#
|
||||||
import testing ;
|
import testing ;
|
||||||
|
|
||||||
|
project : requirements
|
||||||
|
<library>/boost/container//boost_container
|
||||||
|
<library>/boost/type_traits//boost_type_traits
|
||||||
|
;
|
||||||
|
|
||||||
rule test_all
|
rule test_all
|
||||||
{
|
{
|
||||||
local all_rules = ;
|
local all_rules = ;
|
||||||
|
@@ -9,6 +9,11 @@
|
|||||||
|
|
||||||
import testing ;
|
import testing ;
|
||||||
|
|
||||||
|
project : requirements
|
||||||
|
<library>/boost/core//boost_core
|
||||||
|
<library>/boost/container//boost_container
|
||||||
|
;
|
||||||
|
|
||||||
rule test_all
|
rule test_all
|
||||||
{
|
{
|
||||||
local all_rules = ;
|
local all_rules = ;
|
||||||
|
Reference in New Issue
Block a user