]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/src/tools/features/find-lib-feature.jam
bump version to 18.2.2-pve1
[ceph.git] / ceph / src / boost / tools / build / src / tools / features / find-lib-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.find-shared-library]]`find-shared-library`::
11 Adds a shared library to link to. Usually link:#bbv2.tasks.libraries[`lib`]
12 targets should be preferred over using this feature.
13
14 |# # end::doc[]
15
16 feature.feature find-shared-library
17 :
18 : free ; #order-sensitive ;
19
20 #| tag::doc[]
21
22 [[bbv2.builtin.features.find-static-library]]`find-static-library`::
23 Adds a static library to link to. Usually link:#bbv2.tasks.libraries[`lib`]
24 targets should be preferred over using this feature.
25
26 |# # end::doc[]
27
28 feature.feature find-static-library
29 :
30 : free ; #order-sensitive ;
31
32 #| tag::path-doc[]
33
34 [[bbv2.builtin.features.library-path]]`library-path`::
35 Adds to the list of directories which will be used by the linker to search for
36 libraries.
37
38 |# # end::path-doc[]
39
40 feature.feature library-path
41 :
42 : free path ; #order-sensitive ;