Files
array/build.jam

25 lines
594 B
Plaintext
Raw Permalink Normal View History

2025-01-27 21:21:34 +02:00
# Copyright 2023-2024 René Ferdinand Rivera Morell
# Copyright 2024 Peter Dimov
2024-03-11 08:27:02 -05:00
# Distributed under the Boost Software License, Version 1.0.
2025-01-27 21:21:34 +02:00
# https://www.boost.org/LICENSE_1_0.txt
2024-03-11 08:27:02 -05:00
2024-06-14 11:33:55 -05:00
require-b2 5.2 ;
2024-03-11 08:27:02 -05:00
constant boost_dependencies :
/boost/assert//boost_assert
/boost/config//boost_config
/boost/static_assert//boost_static_assert
2025-01-27 21:21:34 +02:00
/boost/throw_exception//boost_throw_exception
2024-03-11 08:27:02 -05:00
;
2025-01-27 21:21:34 +02:00
project /boost/array ;
2024-03-11 08:27:02 -05:00
explicit
2025-01-27 21:21:34 +02:00
[ alias boost_array : : : : <include>include <library>$(boost_dependencies) ]
2024-03-11 08:27:02 -05:00
[ alias all : boost_array test ]
;
call-if : boost-library array
;