mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-03 13:30:25 +07:00
17 lines
359 B
Groovy
17 lines
359 B
Groovy
|
sourceSets.main.java.srcDirs = [ "src/" ]
|
||
|
|
||
|
sourceCompatibility = '1.8'
|
||
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
||
|
|
||
|
ext {
|
||
|
mainClassName = "io.anuke.mindustry.IOSLauncher"
|
||
|
}
|
||
|
|
||
|
launchIPhoneSimulator.dependsOn build
|
||
|
launchIPadSimulator.dependsOn build
|
||
|
launchIOSDevice.dependsOn build
|
||
|
createIPA.dependsOn build
|
||
|
|
||
|
robovm {
|
||
|
archs = "thumbv7:arm64"
|
||
|
}
|