-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.fan
More file actions
33 lines (26 loc) · 759 Bytes
/
build.fan
File metadata and controls
33 lines (26 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using build
class Build : BuildPod {
new make() {
podName = "afParrotSdk2"
summary = "An SDK for remotely piloting the Parrot AR Drone 2.0 quadcopter"
version = Version("0.0.9")
meta = [
"pod.dis" : "Parrot Drone SDK 2",
"repo.tags" : "misc,drone",
"repo.public" : "true"
]
depends = [
"sys 1.0.69 - 1.0",
"inet 1.0.69 - 1.0",
"concurrent 1.0.69 - 1.0",
"afConcurrent 1.0.20 - 1.0",
// ---- libs for examples ----
"gfx 1.0.69 - 1.0",
"fwt 1.0.69 - 1.0",
]
srcDirs = [`examples/`, `fan/`, `fan/advanced/`, `fan/config/`, `fan/internal/`, `fan/public/`]
resDirs = [`doc/`]
meta["afBuild.testPods"] = "gfx fwt"
meta["afBuild.testDirs"] = "examples/"
}
}