vtm-desktop: decouple libGDX LWJGL backend (#714)

This commit is contained in:
Gustl22
2019-04-17 16:16:14 +02:00
committed by Emux
parent d6e55edd8e
commit 5979161611
54 changed files with 98 additions and 152 deletions

View File

@@ -0,0 +1,19 @@
apply plugin: 'java-library'
apply plugin: 'maven'
dependencies {
api project(':vtm-desktop')
api "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
}
sourceSets {
main {
java.srcDirs = ['src']
}
}
if (project.hasProperty("SONATYPE_USERNAME")) {
afterEvaluate {
project.apply from: "${rootProject.projectDir}/deploy.gradle"
}
}