blob: 7ae487963bef68bc3e4d170cb5dc59974d13206e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# file : build/export.build
# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
# 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}
}
|