blob: e7dfa5b834170f521bef34c93dbef4e8499ad883 (
plain)
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
|
# file : build/export.build
# license : MIT; see accompanying LICENSE file
switch $name($import.target)
{
case 'butl-odb'
{
$out_root/
{
include libbutl-odb/
}
export $out_root/libbutl-odb/$import.target
}
case 'butl-pkg-config'
{
$out_root/
{
include libbutl-pkg-config/
}
export $out_root/libbutl-pkg-config/$import.target
}
default
{
$out_root/
{
include libbutl/
}
export $out_root/libbutl/$import.target
}
}
|