mirror of
https://github.com/boostorg/function.git
synced 2025-07-29 12:27:15 +02:00
Update build.jam, test/Jamfile
This commit is contained in:
16
build.jam
16
build.jam
@ -1,7 +1,7 @@
|
|||||||
# Copyright René Ferdinand Rivera Morell 2023-2024
|
# Copyright 2023-2024 René Ferdinand Rivera Morell
|
||||||
|
# Copyright 2024 Peter Dimov
|
||||||
# Distributed under the Boost Software License, Version 1.0.
|
# Distributed under the Boost Software License, Version 1.0.
|
||||||
# (See accompanying file LICENSE_1_0.txt or copy at
|
# https://www.boost.org/LICENSE_1_0.txt
|
||||||
# http://www.boost.org/LICENSE_1_0.txt)
|
|
||||||
|
|
||||||
require-b2 5.2 ;
|
require-b2 5.2 ;
|
||||||
|
|
||||||
@ -11,18 +11,14 @@ constant boost_dependencies :
|
|||||||
/boost/config//boost_config
|
/boost/config//boost_config
|
||||||
/boost/core//boost_core
|
/boost/core//boost_core
|
||||||
/boost/throw_exception//boost_throw_exception
|
/boost/throw_exception//boost_throw_exception
|
||||||
/boost/type_traits//boost_type_traits ;
|
|
||||||
|
|
||||||
project /boost/function
|
|
||||||
: common-requirements
|
|
||||||
<include>include
|
|
||||||
;
|
;
|
||||||
|
|
||||||
|
project /boost/function ;
|
||||||
|
|
||||||
explicit
|
explicit
|
||||||
[ alias boost_function : : : : <library>$(boost_dependencies) ]
|
[ alias boost_function : : : : <include>include <library>$(boost_dependencies) ]
|
||||||
[ alias all : boost_function example test ]
|
[ alias all : boost_function example test ]
|
||||||
;
|
;
|
||||||
|
|
||||||
call-if : boost-library function
|
call-if : boost-library function
|
||||||
;
|
;
|
||||||
|
|
||||||
|
@ -16,8 +16,8 @@ project
|
|||||||
<toolset>msvc:<warnings-as-errors>on
|
<toolset>msvc:<warnings-as-errors>on
|
||||||
<toolset>gcc:<warnings-as-errors>on
|
<toolset>gcc:<warnings-as-errors>on
|
||||||
<toolset>clang:<warnings-as-errors>on
|
<toolset>clang:<warnings-as-errors>on
|
||||||
<library>/boost/typeof//boost_typeof
|
|
||||||
<library>/boost/function//boost_function
|
<library>/boost/function//boost_function
|
||||||
|
<library>/boost/typeof//boost_typeof
|
||||||
;
|
;
|
||||||
|
|
||||||
run function_test.cpp ;
|
run function_test.cpp ;
|
||||||
@ -26,7 +26,8 @@ run function_test.cpp : : : <rtti>off <toolset>gcc-4.4,<cxxstd>0x:<build>no : fu
|
|||||||
run function_n_test.cpp ;
|
run function_n_test.cpp ;
|
||||||
run allocator_test.cpp ;
|
run allocator_test.cpp ;
|
||||||
run stateless_test.cpp ;
|
run stateless_test.cpp ;
|
||||||
run lambda_test.cpp : : : <library>/boost/lambda//boost_lambda ;
|
run lambda_test.cpp
|
||||||
|
: : : <library>/boost/lambda//boost_lambda ;
|
||||||
compile-fail function_test_fail1.cpp ;
|
compile-fail function_test_fail1.cpp ;
|
||||||
compile-fail function_test_fail2.cpp ;
|
compile-fail function_test_fail2.cpp ;
|
||||||
compile function_30.cpp ;
|
compile function_30.cpp ;
|
||||||
@ -44,9 +45,10 @@ run function_ref_portable.cpp ;
|
|||||||
run contains_test.cpp ;
|
run contains_test.cpp ;
|
||||||
run contains2_test.cpp ;
|
run contains2_test.cpp ;
|
||||||
run nothrow_swap.cpp ;
|
run nothrow_swap.cpp ;
|
||||||
run rvalues_test.cpp : : : <library>/boost/move//boost_move ;
|
run rvalues_test.cpp
|
||||||
|
: : : <library>/boost/move//boost_move ;
|
||||||
compile function_typeof_test.cpp
|
compile function_typeof_test.cpp
|
||||||
: <cxxstd>03:<build>no <cxxstd>98:<build>no <cxxstd>0x:<build>no ;
|
: <cxxstd>03:<build>no <cxxstd>98:<build>no <cxxstd>0x:<build>no ;
|
||||||
run result_arg_types_test.cpp ;
|
run result_arg_types_test.cpp ;
|
||||||
run result_arg_n_types_test.cpp ;
|
run result_arg_n_types_test.cpp ;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user