blob: f5e0fddf165105ed6608ba51db0b65e77d4403a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# file : build/export.build
# license : MIT; 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}
}
|