]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/src/tools/features/warnings-feature.jam
update sources to v12.2.3
[ceph.git] / ceph / src / boost / tools / build / src / tools / features / warnings-feature.jam
1 # Copyright 2017 Rene Rivera
2 # Distributed under the Boost Software License, Version 1.0.
3 # (See accompanying file LICENSE_1_0.txt or copy at
4 # http://www.boost.org/LICENSE_1_0.txt)
5
6 # TODO: Documentation.
7
8 import feature ;
9
10 feature.feature warnings
11 :
12 on # Enable default/"reasonable" warning level for the tool.
13 all # Enable all possible warnings issued by the tool.
14 off # Disable all warnings issued by the tool.
15 : incidental propagated ;
16
17 feature.feature warnings-as-errors
18 :
19 off # Do not fail the compilation if there are warnings.
20 on # Fail the compilation if there are warnings.
21 : incidental propagated ;