2
0
mirror of https://github.com/boostorg/heap.git synced 2026-01-20 04:32:31 +00:00
Files
heap/build.jam
Tim Blechmann 8ae6cfd336 heap: use c++14 wherever possible
* remove c++11 workarounds
* use std type traits
* use std::array
* use nullptr
* use noexcept
2024-11-09 12:55:27 +08:00

31 lines
832 B
Plaintext

# 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/concept_check//boost_concept_check
/boost/config//boost_config
/boost/core//boost_core
/boost/intrusive//boost_intrusive
/boost/iterator//boost_iterator
/boost/parameter//boost_parameter
/boost/static_assert//boost_static_assert
/boost/throw_exception//boost_throw_exception ;
project /boost/heap
: common-requirements
<include>include
;
explicit
[ alias boost_heap : : : : <library>$(boost_dependencies) ]
[ alias all : boost_heap test ]
;
call-if : boost-library heap
;