-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathboost-install-dirs.jam
81 lines (66 loc) · 1.6 KB
/
boost-install-dirs.jam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright 2018-2020 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
import modules ;
import package ;
import path ;
import stage ;
stage.add-install-dir cmakedir : cmake : libdir ;
# header-subdir
rule header-subdir
{
local r ;
local layout = [ modules.peek boostcpp : layout ] ;
if $(layout) = versioned
{
local BOOST_VERSION_TAG = [ modules.peek boostcpp : BOOST_VERSION_TAG ] ;
r = "boost-$(BOOST_VERSION_TAG)" ;
}
return $(r) ;
}
# stagedir
rule stagedir
{
if [ modules.peek boostcpp : BOOST_STAGE_LOCATE ]
{
return [ path.make [ modules.peek boostcpp : BOOST_STAGE_LOCATE ] ] ;
}
else
{
return [ path.make [ path.join [ path.pwd ] stage ] ] ;
}
}
# stage-libdir
rule stage-libdir
{
local ld = [ MATCH --stage-libdir=(.*) : [ modules.peek : ARGV ] ] ;
if $(ld)
{
ld = [ path.root [ path.make $(ld) ] [ path.pwd ] ] ;
return $(ld) ;
}
else
{
local stagedir = [ stagedir ] ;
return $(stagedir)/lib ;
}
}
# stage-includedir
rule stage-includedir
{
local ld = [ MATCH --stage-includedir=(.*) : [ modules.peek : ARGV ] ] ;
if $(ld)
{
ld = [ path.root [ path.make $(ld) ] [ path.pwd ] ] ;
return $(ld) ;
}
else if [ modules.peek boostcpp : BOOST_ROOT ]
{
return [ path.make [ modules.peek boostcpp : BOOST_ROOT ] ] ;
}
else
{
local stagedir = [ stagedir ] ;
return $(stagedir)/include ;
}
}