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

@ -1,5 +1,5 @@
buildscript { buildscript {
repositories { repositories {
mavenLocal() mavenLocal()
@ -10,7 +10,7 @@ buildscript {
dependencies { dependencies {
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.1' classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.1'
classpath 'org.multi-os-engine:moe-gradle:1.3.12' classpath 'org.multi-os-engine:moe-gradle:1.3.12'
} }
} }
@ -54,7 +54,7 @@ project(":forge-ai") {
compile project(":forge-game") compile project(":forge-game")
compile "org.apache.commons:commons-math3:3.6.1" compile "org.apache.commons:commons-math3:3.6.1"
compile "com.badlogicgames.gdx:gdx:$gdxVersion" compile "com.badlogicgames.gdx:gdx:$gdxVersion"
} }
} }
@ -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 "xmlpull:xmlpull:1.1.3.1"
compile "xpp3:xpp3_min:1.1.4c"
compile "com.thoughtworks.xstream:xstream:1.4.7"
compile "io.netty:netty-all:4.0.25.Final" compile "io.netty:netty-all:4.0.25.Final"
compile "com.thoughtworks.xstream:xstream:1.4.7"
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"
} }
} }
@ -125,7 +131,7 @@ project(":forge-gui-mobile-desktop") {
compile project(":forge-gui-mobile") compile project(":forge-gui-mobile")
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion" compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop" compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
compile "com.miglayout:miglayout:3.5.5" compile "com.miglayout:miglayout:3.5.5"
compile "com.mortennobel:java-image-scaling:0.8.5" compile "com.mortennobel:java-image-scaling:0.8.5"
compile "org.freemarker:freemarker:2.3.20" compile "org.freemarker:freemarker:2.3.20"
@ -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