-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.fan
47 lines (38 loc) · 1.13 KB
/
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
46
47
using build:: BuildPod
class Build : BuildPod {
new make() {
podName = "afxStarLord"
summary = "Language Server Protocol (LSP) for Fantom"
version = Version("0.0.2")
meta = [
"pod.dis" : "Language Server Protocol (LSP) for Fantom",
"repo.tags" : "system",
"repo.public" : "true",
]
index = [
"afx.libDef" : [
"afxStarLord::LspLib",
"afxStarLord::LspFantomLib",
],
]
depends = [
// ---- Fantom Core -----------------
"sys 1.0.77 - 1.0",
// ---- Fantom Factory --------------
"afxLspFantom 0.0.1 - 0.1",
"afJson 2.0.15 - 2.0", // **** non-conflicting sys::Range using statements
]
srcDirs = [`fan/`]
resDirs = [`doc/`]
docApi = false
docSrc = false
meta["afBuild.docApi"] = "false"
meta["afBuild.docSrc"] = "false"
meta["afBuild.skipReadmeMd"] = "false"
meta["afBuild.testPods"] = ""
meta["afBuild.uberMe"] = "true"
meta["afBuild.uberPod"] = "afx afxLsp afxLspFantom afJson afJsonRpc afConcurrent afBeanUtils"
meta["afBuild.removeJs"] = "true"
meta["afBuild.keepApiDocs"] = ""
}
}