blob: 8cd164655af3bc5098ec312943fefbd9a27a4627 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# file : build/export.build
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license : TBC; see accompanying LICENSE file
$out_root/:
{
include bbot/
}
if ($import.target == exe{bbot-agent})
export $out_root/bbot/exe{bbot-agent}
elif ($import.target == exe{bbot-worker})
export $out_root/bbot/exe{bbot-worker}
else
assert false unknown target $import.target
|