mirror of
https://github.com/boostorg/intrusive.git
synced 2025-05-09 23:03:56 +00:00
Merge branch 'grafikrobot-modular' into develop
This commit is contained in:
commit
ab7ee83d8c
11
Jamfile
11
Jamfile
@ -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
25
build.jam
Normal 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
|
||||
;
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
] ;
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
] ;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user