* Added key remapping for GLFW key constants * Rename AppSettings.getGammaCorrection() to isGammaCorrection() * Use LWJGL3 artifacts from maven * Minor compatibility changes for LWJGL 3.0.0b * Fixed some minor bugs in LwjglWindow
15 lines
429 B
Groovy
15 lines
429 B
Groovy
if (!hasProperty('mainClass')) {
|
|
ext.mainClass = ''
|
|
}
|
|
|
|
def lwjglVersion = '3.0.0b'
|
|
|
|
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"
|
|
} |