diff options
| author | ilotterytea <iltsu@alright.party> | 2025-01-20 19:29:50 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-01-20 19:29:50 +0500 |
| commit | 043834fa0adf502f61ba09fe312fa3e90b8a6bcc (patch) | |
| tree | 6b140cc4fdb73c954d564b2baf6ff1086a4ada76 /core/build.gradle | |
initial commit
Diffstat (limited to 'core/build.gradle')
| -rw-r--r-- | core/build.gradle | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/build.gradle b/core/build.gradle new file mode 100644 index 0000000..bb73187 --- /dev/null +++ b/core/build.gradle @@ -0,0 +1,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" + } +} |
