2015-08-26 22:24:24 +01:00
|
|
|
if (!hasProperty('mainClass')) {
|
|
|
|
ext.mainClass = ''
|
|
|
|
}
|
|
|
|
|
2016-08-26 12:38:43 +02:00
|
|
|
def lwjglVersion = '3.0.0'
|
2015-09-17 11:59:44 +01:00
|
|
|
|
2016-09-12 10:19:01 +02:00
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
|
2015-08-26 22:24:24 +01:00
|
|
|
dependencies {
|
|
|
|
compile project(':jme3-core')
|
|
|
|
compile project(':jme3-desktop')
|
2015-12-28 23:53:36 -05:00
|
|
|
|
|
|
|
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"
|
|
|
|
}
|