]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/src/tools/features/build-feature.jam
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / src / tools / features / build-feature.jam
1 # Copyright 2017 Rene Rivera
2 # Distributed under the Boost Software License, Version 1.0.
3 # (See accompanying file LICENSE.txt or copy at
4 # https://www.bfgroup.xyz/b2/LICENSE.txt)
5
6 import feature ;
7
8 #| tag::doc[]
9
10 [[bbv2.builtin.features.build]]`build`::
11 *Allowed values:* `no`
12 +
13 Used to conditionally disable build of a target. If `<build>no` is in
14 properties when building a target, build of that target is skipped. Combined
15 with conditional requirements this allows you to skip building some target in
16 configurations where the build is known to fail.
17
18 |# # end::doc[]
19
20 feature.feature build
21 : yes no
22 : optional ;