diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2018-06-27 10:13:39 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2018-06-28 16:25:07 +0200 |
commit | 357bb12eef425ae91a1055f60f788a450f965fb0 (patch) | |
tree | 6b4ee449662a8c36174e48f777f6886ee2917733 /build.gradle | |
parent | 1e5fc3262942078fe00d51c2f2c9a241bd01a582 (diff) | |
download | gdx-boardgame-357bb12eef425ae91a1055f60f788a450f965fb0.zip gdx-boardgame-357bb12eef425ae91a1055f60f788a450f965fb0.tar.gz |
Assets supports TrueType fonts
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index e95a7a7..4e567c0 100644 --- a/build.gradle +++ b/build.gradle @@ -42,6 +42,7 @@ project(":desktop") { implementation project(":core") implementation "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion" implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" + implementation "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop" } } @@ -58,6 +59,12 @@ project(":android") { natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64" + implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" + natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi" + natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi-v7a" + natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-arm64-v8a" + natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86" + natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86_64" } } @@ -66,6 +73,7 @@ project(":core") { dependencies { implementation "com.badlogicgames.gdx:gdx:$gdxVersion" + implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" } } |