summaryrefslogtreecommitdiff
path: root/core/build.gradle
blob: bb73187261287d0601dc739d51ab171ed5f0bcae (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.badlogicgames.gdx:gdx:$gdxVersion"
  api "com.github.mgsx-dev.gdx-gltf:gltf:$gdxGltfVersion"
  api project(':shared')

  if(enableGraalNative == 'true') {
    implementation "io.github.berstanio:gdx-svmhelper-annotations:$graalHelperVersion"
  }
}