2
0
mirror of https://github.com/boostorg/locale.git synced 2026-01-19 04:22:08 +00:00
Files
locale/build.jam
Alexander Grund c2147f6486 Switch to boost::core::string_view
This is compatible to `std::string_view` and also to `boost::string_view`
so hence the better option.
2025-01-10 13:33:09 +01:00

40 lines
1.0 KiB
Plaintext

# Copyright René Ferdinand Rivera Morell 2023-2024
# Copyright(c) 2025 Alexander Grund
# 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 ;
import feature ;
# Features
feature.feature boost.locale.iconv : on off : optional propagated ;
feature.feature boost.locale.icu : on off : optional propagated ;
feature.feature boost.locale.posix : on off : optional propagated ;
feature.feature boost.locale.std : on off : optional propagated ;
feature.feature boost.locale.winapi : on off : optional propagated ;
constant boost_dependencies :
/boost/assert//boost_assert
/boost/config//boost_config
/boost/core//boost_core
/boost/iterator//boost_iterator
;
project /boost/locale
: common-requirements
<include>include
;
explicit
[ alias boost_locale : build//boost_locale ]
[ alias all : boost_locale test ]
;
call-if : boost-library locale
: install boost_locale
;