mirror of
https://github.com/Relintai/mtg-forge-ios.git
synced 2024-11-14 04:17:19 +01:00
Added back in the RoboVM backend, and the moe backend is one step
closer to work.
This commit is contained in:
parent
3808fa1b1e
commit
12ffd2a033
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,6 +1,8 @@
|
||||
.gradle/*
|
||||
build/*
|
||||
build/
|
||||
robovm-build/
|
||||
xcode/*
|
||||
*.class
|
||||
*.jar
|
||||
.idea/
|
||||
*.swp
|
||||
|
66
build.gradle
66
build.gradle
@ -1,5 +1,5 @@
|
||||
buildscript {
|
||||
|
||||
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
@ -10,7 +10,7 @@ buildscript {
|
||||
dependencies {
|
||||
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.1'
|
||||
classpath 'org.multi-os-engine:moe-gradle:1.3.12'
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@ -54,7 +54,7 @@ project(":forge-ai") {
|
||||
compile project(":forge-game")
|
||||
compile "org.apache.commons:commons-math3:3.6.1"
|
||||
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -78,10 +78,16 @@ project(":forge-gui") {
|
||||
compile project(":forge-core")
|
||||
compile project(":forge-game")
|
||||
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 "com.thoughtworks.xstream:xstream:1.4.7"
|
||||
compile "log4j:log4j:1.2.17"
|
||||
compile "org.fourthline.cling:cling-support:2.0.1"
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -125,7 +131,7 @@ project(":forge-gui-mobile-desktop") {
|
||||
compile project(":forge-gui-mobile")
|
||||
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
|
||||
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.mortennobel:java-image-scaling:0.8.5"
|
||||
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 {
|
||||
delete ".project"
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user