forked from scratchfoundation/scratch-flash
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.groovy
42 lines (42 loc) · 1.11 KB
/
config.groovy
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
environments {
'11.6be' {
output = 'SharpBleedingEdge'
playerVersion = '11.6'
additionalCompilerOptions = [
"-swf-version=19",
"-define+=SCRATCH::allow3d,true",
"-define+=SHARP::bleedingEdge,true",
"-define+=SHARP::builtWithDevMode,false",
]
}
'11.6dev' {
output = 'SharpDev'
playerVersion = '11.6'
additionalCompilerOptions = [
"-swf-version=19",
"-define+=SCRATCH::allow3d,true",
"-define+=SHARP::builtWithDevMode,true",
"-define+=SHARP::bleedingEdge,false",
]
}
'11.6' {
output = 'Sharp'
playerVersion = '11.6'
additionalCompilerOptions = [
"-swf-version=19",
"-define+=SCRATCH::allow3d,true",
"-define+=SHARP::builtWithDevMode,false",
"-define+=SHARP::bleedingEdge,false",
]
}
'10.2' {
output = 'SharpFor10.2'
playerVersion = '10.2'
additionalCompilerOptions = [
"-swf-version=11",
"-define+=SCRATCH::allow3d,false",
"-define+=SHARP::builtWithDevMode,false",
"-define+=SHARP::bleedingEdge,false",
]
}
}