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