-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.fan
40 lines (40 loc) · 1.09 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
using build
class Build : build::BuildPod
{
new make()
{
podName = "knxExt"
summary = "KNX Extension"
meta = ["org.name": "J2 Innovations",
"org.uri": "http://www.j2inn.com/",
"proj.name": "KNXExt extension",
"proj.uri": "http://www.j2inn.com/",
"j2version": "1.0",
"license.name": "Commercial",
"skyspark.docExt": "true"]
version = Version("2.0.6.1")
depends = ["sys 1.0",
"concurrent 1.0",
"util 1.0",
"haystack 2.0",
"proj 2.0",
"dom 1.0",
"fwt 1.0",
"webfwt 1.0",
"web 1.0+",
"fresco 2.0",
"connExt 2.0",
"pointExt 2.0",
"hisExt 2.0",
"xml 1.0+",
"xmlExt 1.0+",
"knx 1.0+"]
srcDirs = [`fan/`]
resDirs = [`res/img/`, `lib/`, `locale/`]
index =
[
"proj.ext": "knxExt::KNXExt",
"proj.lib": "knxExt::KNXLib"
]
}
}