• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
6import feature ;
7
8#| tag::doc[]
9
10[[bbv2.builtin.features.find-shared-library]]`find-shared-library`::
11Adds a shared library to link to. Usually link:#bbv2.tasks.libraries[`lib`]
12targets should be preferred over using this feature.
13
14|# # end::doc[]
15
16feature.feature find-shared-library
17    :
18    : free ; #order-sensitive ;
19
20#| tag::doc[]
21
22[[bbv2.builtin.features.find-static-library]]`find-static-library`::
23Adds a static library to link to. Usually link:#bbv2.tasks.libraries[`lib`]
24targets should be preferred over using this feature.
25
26|# # end::doc[]
27
28feature.feature find-static-library
29    :
30    : free ; #order-sensitive ;
31
32#| tag::path-doc[]
33
34[[bbv2.builtin.features.library-path]]`library-path`::
35Adds to the list of directories which will be used by the linker to search for
36libraries.
37
38|# # end::path-doc[]
39
40feature.feature library-path
41    :
42    : free path ; #order-sensitive ;
43