Desktop LWJGL3 backend (#717)

This commit is contained in:
Gustl22
2019-04-21 15:39:12 +02:00
committed by Emux
parent b98505c815
commit 5f1c3c3186
5 changed files with 1762 additions and 0 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-lwjgl3:$gdxVersion"
}
sourceSets {
main {
java.srcDirs = ['src']
}
}
if (project.hasProperty("SONATYPE_USERNAME")) {
afterEvaluate {
project.apply from: "${rootProject.projectDir}/deploy.gradle"
}
}