]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/src/tools/features/dll-feature.jam
update sources to v12.2.3
[ceph.git] / ceph / src / boost / tools / build / src / tools / features / dll-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 dll-path
11 :
12 : free path ;
13
14 feature.feature hardcode-dll-paths
15 : true false
16 : incidental ;
17
18 # An internal feature that holds the paths of all dependency shared libraries.
19 # On Windows, it is needed so that we can add all those paths to PATH when
20 # running applications. On Linux, it is needed to add proper -rpath-link command
21 # line options.
22 feature.feature xdll-path
23 :
24 : free path ;
25
26 # Provides means to specify def-file for windows DLLs.
27 feature.feature def-file
28 :
29 : free dependency ;
30
31 feature.feature suppress-import-lib
32 : false true
33 : incidental ;