-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.fan
More file actions
45 lines (36 loc) · 1.13 KB
/
build.fan
File metadata and controls
45 lines (36 loc) · 1.13 KB
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
using fanr
class Build : BuildPod {
new make() {
podName = "afEscapeTheMainframe"
summary = "A jump game rendered in stunning retro 3D vector graphics!"
version = Version("1.0.0.2")
meta = [
"pod.dis" : "Escape the Mainframe",
"repo.tags" : "app, game",
"repo.public" : "true",
]
depends = [
"sys 1.0.70 - 1.0",
"gfx 1.0.70 - 1.0",
"fwt 1.0.70 - 1.0",
"util 1.0.70 - 1.0",
// ---- Core ----
"afIoc 3.0.4 - 3.0",
// ---- Online Hi-Scores ----
"concurrent 1.0.70 - 1.0",
"dom 1.0.70 - 1.0",
// ---- Web Server ----
"wisp 1.0.70 - 1.0",
"web 1.0.70 - 1.0",
"webmod 1.0.70 - 1.0",
]
srcDirs = [`fan/`, `fan/gaming/`, `fan/infrastructure/`, `fan/jump/`, `fan/jump/models/`, `fan/jump/screens/`, `fan/music/`, `fan/sinedots/`, `fan/web/`, `test/`]
jsDirs = [`js/`]
resDirs = [`doc/`, `res/`, `res/images/`, `res/sounds/`, `res/music/`, `res/web/`]
docApi = false
docSrc = true
meta["afBuild.docApi"] = "false"
meta["afBuild.docSrc"] = "true"
}
}