Merge branch 'grafikrobot-modular' into develop

This commit is contained in:
Ion Gaztañaga 2024-08-19 00:01:10 +02:00
commit ab7ee83d8c
5 changed files with 33 additions and 12 deletions

11
Jamfile
View File

@ -1,11 +0,0 @@
# Boost.Intrusive Library Jamfile
#
# Copyright (c) 2018 Ion Gaztanaga
#
# 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 ;

25
build.jam Normal file
View File

@ -0,0 +1,25 @@
# 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/assert//boost_assert
/boost/config//boost_config
/boost/move//boost_move ;
project /boost/intrusive
: common-requirements
<include>include
;
explicit
[ alias boost_intrusive : : : : <library>$(boost_dependencies) ]
[ alias all : boost_intrusive example test ]
;
call-if : boost-library intrusive
;

View File

@ -18,7 +18,7 @@ path-constant here : . ;
doxygen autodoc
:
[ glob ../../../boost/intrusive/*.hpp ]
[ glob ../include/boost/intrusive/*.hpp ]
:
<doxygen:param>EXTRACT_ALL=NO
<doxygen:param>HIDE_UNDOC_MEMBERS=YES

View File

@ -11,6 +11,8 @@
# 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 testing ;
# this rule enumerates through all the sources and invokes
# the run rule for each source, the result is a list of all
# the run rules, which we can pass on to the test_suite rule:
@ -30,6 +32,7 @@ rule test_all
<toolset>gcc,<target-os>windows:<linkflags>"-lole32 -loleaut32"
<host-os>hpux,<toolset>gcc:<linkflags>"-Wl,+as,mpas"
<host-os>windows,<toolset>clang:<linkflags>"-lole32 -loleaut32 -lpsapi -ladvapi32"
<library>/boost/interprocess//boost_interprocess
] ;
}

View File

@ -25,6 +25,10 @@ rule test_all
: # test-files
: # requirements
<host-os>windows,<toolset>clang:<linkflags>"-lole32 -loleaut32 -lpsapi -ladvapi32"
<library>/boost/core//boost_core
<library>/boost/container//boost_container
<library>/boost/container_hash//boost_container_hash
<library>/boost/type_traits//boost_type_traits
] ;
}