mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-10 15:19:24 +07:00
17 lines
361 B
Groovy
17 lines
361 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"
|
|
} |