-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.fan
45 lines (36 loc) · 976 Bytes
/
build.fan
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
34
35
36
37
38
39
40
41
42
43
44
45
using build
class Build : BuildPod {
new make() {
podName = "afAxontExt"
summary = "Unit test runner and assertion functions for Axon"
version = Version("0.1.1")
meta = [
"pod.dis" : "Axont",
"pod.uri" : "https://stackhub.org/package/afAxontExt",
"repo.public" : "true",
"skyarc.icons" : "true",
]
depends = [
"sys 1.0.77 - 1.0",
// ---- SkySpark -----------------------
"axon 3.1.1 - 3.1",
"haystack 3.1.1 - 3.1",
"skyarc 3.1.1 - 3.1",
"skyarcd 3.1.1 - 3.1",
]
srcDirs = [`fan/`, `test/`]
resDirs = [`doc/`, `lib/`, `svg/`]
docApi = true
docSrc = false
meta["afBuild.docApi"] = "true"
meta["afBuild.docSrc"] = "true"
meta["afBuild.testPods"] = ""
meta["afBuild.testDirs"] = "test/ lib/"
meta["afBuild.plainReadmeMd"] = "true"
//meta["afBuild.skipReadmeMd"] = "true"
index = [
"skyarc.ext": "afAxontExt::AxontExt",
"skyarc.lib": "afAxontExt::AxontLib",
]
}
}