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.
16 lines
370 B
16 lines
370 B
8 years ago
|
if (!hasProperty('mainClass')) {
|
||
|
ext.mainClass = ''
|
||
|
}
|
||
|
|
||
|
def lwjglVersion = '3.0.0'
|
||
|
|
||
|
sourceCompatibility = '1.8'
|
||
|
|
||
|
dependencies {
|
||
|
compile project(':jme3-core')
|
||
|
compile project(':jme3-lwjgl3')
|
||
|
compile project(':jme3-effects')
|
||
|
|
||
|
// https://mvnrepository.com/artifact/net.java.dev.jna/jna
|
||
|
compile group: 'net.java.dev.jna', name: 'jna', version: '4.3.0'
|
||
|
}
|