Added back in the RoboVM backend, and the moe backend is one step

closer to work.
This commit is contained in:
Relintai 2017-10-08 15:21:03 +02:00
parent 3808fa1b1e
commit 12ffd2a033
481 changed files with 1504 additions and 18 deletions

4
.gitignore vendored
View File

@ -1,6 +1,8 @@
.gradle/* .gradle/*
build/* build/
robovm-build/
xcode/* xcode/*
*.class *.class
*.jar *.jar
.idea/ .idea/
*.swp

View File

@ -78,10 +78,16 @@ project(":forge-gui") {
compile project(":forge-core") compile project(":forge-core")
compile project(":forge-game") compile project(":forge-game")
compile project(":forge-ai") compile project(":forge-ai")
compile "io.netty:netty-all:4.0.25.Final"
compile "xmlpull:xmlpull:1.1.3.1"
compile "xpp3:xpp3_min:1.1.4c"
compile "com.thoughtworks.xstream:xstream:1.4.7" compile "com.thoughtworks.xstream:xstream:1.4.7"
compile "io.netty:netty-all:4.0.25.Final"
compile "log4j:log4j:1.2.17" compile "log4j:log4j:1.2.17"
compile "org.fourthline.cling:cling-support:2.0.1" compile "org.fourthline.cling:cling-support:2.0.1"
} }
} }
@ -133,6 +139,54 @@ project(":forge-gui-mobile-desktop") {
} }
} }
project(":forge-gui-mobile-ios-moe") {
apply plugin: "moe"
configurations { natives }
dependencies {
compile project(":forge-core")
compile project(":forge-game")
compile project(":forge-ai")
compile project(":forge-gui")
compile project(":forge-gui-mobile")
compile "com.badlogicgames.gdx:gdx-backend-moe:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios"
compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-ios"
compile "com.miglayout:miglayout:3.5.5"
compile "com.mortennobel:java-image-scaling:0.8.5"
compile "org.freemarker:freemarker:2.3.20"
compile "javazoom:jlayer:1.0.1"
}
}
project(":forge-gui-mobile-ios") {
apply plugin: "java"
apply plugin: "robovm"
dependencies {
compile project(":forge-core")
compile project(":forge-game")
compile project(":forge-ai")
compile project(":forge-gui")
compile project(":forge-gui-mobile")
compile "com.mobidevelop.robovm:robovm-rt:$roboVMVersion"
compile "com.mobidevelop.robovm:robovm-cocoatouch:$roboVMVersion"
compile "com.badlogicgames.gdx:gdx-backend-robovm:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios"
compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-ios"
compile "com.miglayout:miglayout:3.5.5"
compile "com.mortennobel:java-image-scaling:0.8.5"
compile "org.freemarker:freemarker:2.3.20"
compile "javazoom:jlayer:1.0.1"
}
}
tasks.eclipse.doLast { tasks.eclipse.doLast {
delete ".project" delete ".project"
} }

Some files were not shown because too many files have changed in this diff Show More