-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
build.jam
38 lines (29 loc) · 1.01 KB
/
build.jam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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 ;
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
/boost/utility//boost_utility ;
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
;