-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.fan
41 lines (34 loc) · 984 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
using build
class Build : BuildPod {
new make() {
podName = "afFindEmma"
summary = "A retro text adventure game created as a Birthday present for my wife Emma"
version = Version("1.0.2")
meta = [
"pod.dis" : "Find Emma!",
"repo.public" : "true",
"afIoc.module" : "afFindEmma::WebModule"
]
depends = [
"sys 1.0.70 - 1.0",
"util 1.0.70 - 1.0",
// ---- Web -------------------------
"graphics 1.0.70 - 1.0",
"dom 1.0.70 - 1.0",
"afIoc 3.0.6 - 3.0",
"afIocConfig 1.1.0 - 1.1",
"afBedSheet 1.5.10 - 1.5",
"afPillow 1.1.4 - 1.1",
"afEfanXtra 1.2.0 - 1.2",
"afDuvet 1.1.8 - 1.1",
"afColdFeet 1.4.0 - 1.4",
"afGoogleAnalytics 0.1.8 - 0.1"
]
srcDirs = [`fan/`, `fan/engine/`, `fan/web/`, `test/`]
resDirs = [`doc/`, `res/`]
docApi = false
docSrc = true
meta["afBuild.docApi"] = "false"
meta["afBuild.docSrc"] = "true"
}
}