-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.fan
More file actions
35 lines (27 loc) · 818 Bytes
/
build.fan
File metadata and controls
35 lines (27 loc) · 818 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
34
35
using build
class Build : BuildPod {
new make() {
podName = "afPegger"
summary = "Parsing Expression Grammar (PEG) for when Regular Expressions just aren't enough!"
version = Version("1.1.11")
meta = [
"pod.dis" : "Pegger",
"repo.tags" : "system",
"repo.public" : "true",
// ---- SkySpark ----
"ext.name" : "afPegger",
"ext.icon" : "afPegger",
"skyarc.icons" : "true",
]
depends = [
// ---- Core ----
"sys 1.0.70 - 1.0",
]
srcDirs = [`fan/`, `fan/internal/`, `fan/internal/rules/`, `fan/public/`, `test/`]
resDirs = [`doc/`, `svg/`]
docApi = true
docSrc = true
meta["afBuild.docApi"] = "true"
meta["afBuild.docSrc"] = "true"
}
}