diff options
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') } } |