blob: be0ae073718e9df1158b6a6f258951af1c015caa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# file : build/export.build
# license : TBC; see accompanying LICENSE file
$out_root/
{
include bbot/
}
switch $import.target
{
case exe{bbot-agent}
export $out_root/bbot/exe{bbot-agent}
case exe{bbot-worker}
export $out_root/bbot/exe{bbot-worker}
}
|