blob: e142af46b9640eb2ddc0bda3f200e4ad0035c37e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
eclipse.project.name = appName + '-core'
dependencies {
api "com.badlogicgames.gdx:gdx:$gdxVersion"
api "com.github.mgsx-dev.gdx-gltf:gltf:$gdxGltfVersion"
api "org.java-websocket:Java-WebSocket:$javaWebsocketVersion"
api project(':shared')
if (enableGraalNative == 'true') {
implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
}
}
|