jmonkeyengine/jme3-lwjgl3/build.gradle

17 lines
457 B
Groovy
Raw Normal View History

if (!hasProperty('mainClass')) {
ext.mainClass = ''
}
def lwjglVersion = '3.0.0'
sourceCompatibility = '1.8'
dependencies {
compile project(':jme3-core')
compile project(':jme3-desktop')
compile "org.lwjgl:lwjgl:${lwjglVersion}"
compile "org.lwjgl:lwjgl-platform:${lwjglVersion}:natives-windows"
compile "org.lwjgl:lwjgl-platform:${lwjglVersion}:natives-linux"
compile "org.lwjgl:lwjgl-platform:${lwjglVersion}:natives-osx"
}