diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2016-01-18 13:57:26 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2016-01-18 13:57:26 +0100 |
commit | 7556319955607091ae8685e2fa8e8e6135ee4bf4 (patch) | |
tree | 0845ca53429cc1f3dc3c7fcf085f78288464723a /build.gradle | |
parent | 15d952d77949db2f8bbb667e9a648cd3e7a7852e (diff) | |
download | RustAndDust-7556319955607091ae8685e2fa8e8e6135ee4bf4.zip RustAndDust-7556319955607091ae8685e2fa8e8e6135ee4bf4.tar.gz |
setup SQLite
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index a65fe74..81358a7 100644 --- a/build.gradle +++ b/build.gradle @@ -41,6 +41,7 @@ project(":desktop") { compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion" compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop" + compile fileTree(dir: 'libs', include: '*.jar') } } @@ -59,6 +60,7 @@ project(":android") { 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" + compile fileTree(dir: 'libs', include: '*.jar') } } @@ -102,6 +104,7 @@ project(":core") { compile "com.badlogicgames.gdx:gdx:$gdxVersion" compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" testCompile "junit:junit:+" + compile fileTree(dir: 'libs', include: '*.jar') } } |