-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.fan
38 lines (31 loc) · 907 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
using build
class Build : BuildPod {
new make() {
podName = "afConcurrent"
summary = "Utility classes for synchronising and sharing data between threads"
version = Version("1.0.29")
meta = [
"pod.dis" : "Concurrent",
"pod.proj" : "Fantom Factory Libraries",
"afIoc.module" : "afConcurrent::ConcurrentModule",
"repo.tags" : "system",
"repo.public" : "true",
// ---- SkySpark ----
"ext.name" : "afConcurrent",
"ext.icon" : "afConcurrent",
// "ext.depends" : "",
"skyarc.icons" : "true",
]
// this NEEDS to be a SkySpark extension so the pod will be loaded in JS UI Views
// a requirement for development before we UberPod everything
index = [
"skyarc.ext" : "afConcurrent"
]
depends = [
"sys 1.0.69 - 1.0",
"concurrent 1.0.69 - 1.0"
]
srcDirs = [`fan/`, `fan/internal/`, `fan/ioc/`, `test/`]
resDirs = [`doc/`, `svg/`]
}
}