blob: 5f921cb09b33df3cf2a49ddda72e1be8ba4f988b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# file : build/export.build
# license : MIT; see accompanying LICENSE file
if ($name($import.target) == 'butl-odb')
{
$out_root/
{
include libbutl-odb/
}
export $out_root/libbutl-odb/$import.target
}
else
{
$out_root/
{
include libbutl/
}
export $out_root/libbutl/$import.target
}
|