You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
429 B
15 lines
429 B
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"
|
|
} |