diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2015-11-09 11:35:28 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2015-11-09 11:35:28 +0100 |
commit | c7e871e749e6531deb3b49311e0c5b71523aeff8 (patch) | |
tree | b9dcd9ba57c2804347293cb445a0a3413ff83dbd /build.gradle | |
parent | 1ecc5abda207f70b0054415fa9abe9c5423c2206 (diff) | |
download | RustAndDust-c7e871e749e6531deb3b49311e0c5b71523aeff8.zip RustAndDust-c7e871e749e6531deb3b49311e0c5b71523aeff8.tar.gz |
use freetype font
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 150da2f..f5688a6 100644 --- a/build.gradle +++ b/build.gradle @@ -36,12 +36,12 @@ allprojects { project(":desktop") { apply plugin: "java" - dependencies { compile project(":core") compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion" compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" compile "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop" + compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop" } } @@ -60,6 +60,10 @@ project(":android") { natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi" natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi-v7a" natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86" + compile "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-x86" } } @@ -105,6 +109,7 @@ project(":core") { dependencies { compile "com.badlogicgames.gdx:gdx:$gdxVersion" compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion" + compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" testCompile "junit:junit:+" } } |