mirror of
https://github.com/Anuken/Mindustry.git
synced 2024-11-11 14:56:10 +03:00
22 lines
454 B
Groovy
22 lines
454 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"
|
|
}
|
|
|
|
eclipse.project {
|
|
name = appName + "-ios"
|
|
natures 'org.robovm.eclipse.RoboVMNature'
|
|
} |