From 642b9f4d390a6a9748be108577937cd2cf1e5dae Mon Sep 17 00:00:00 2001 From: javasabr Date: Tue, 18 Jul 2017 00:54:50 +0300 Subject: [PATCH] added dependences to native libs --- jme3-lwjgl3/build.gradle | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/jme3-lwjgl3/build.gradle b/jme3-lwjgl3/build.gradle index 69e444977..0abb4928b 100644 --- a/jme3-lwjgl3/build.gradle +++ b/jme3-lwjgl3/build.gradle @@ -10,10 +10,22 @@ dependencies { compile project(':jme3-core') compile project(':jme3-desktop') - compile group: 'org.lwjgl', name: 'lwjgl', version: lwjglVersion - compile group: 'org.lwjgl', name: 'lwjgl-glfw', version: lwjglVersion - compile group: 'org.lwjgl', name: 'lwjgl-openal', version: lwjglVersion - compile group: 'org.lwjgl', name: 'lwjgl-opencl', version: lwjglVersion - compile group: 'org.lwjgl', name: 'lwjgl-opengl', version: lwjglVersion - compile group: 'org.lwjgl', name: 'lwjgl-jemalloc', version: lwjglVersion + compile "org.lwjgl:lwjgl:${lwjglVersion}" + compile "org.lwjgl:lwjgl-glfw:${lwjglVersion}" + compile "org.lwjgl:lwjgl-jemalloc:${lwjglVersion}" + compile "org.lwjgl:lwjgl-openal:${lwjglVersion}" + compile "org.lwjgl:lwjgl-opencl:${lwjglVersion}" + compile "org.lwjgl:lwjgl-opengl:${lwjglVersion}" + runtime "org.lwjgl:lwjgl:${lwjglVersion}:natives-windows" + runtime "org.lwjgl:lwjgl:${lwjglVersion}:natives-linux" + runtime "org.lwjgl:lwjgl:${lwjglVersion}:natives-macos" + runtime "org.lwjgl:lwjgl-glfw:${lwjglVersion}:natives-windows" + runtime "org.lwjgl:lwjgl-glfw:${lwjglVersion}:natives-linux" + runtime "org.lwjgl:lwjgl-glfw:${lwjglVersion}:natives-macos" + runtime "org.lwjgl:lwjgl-jemalloc:${lwjglVersion}:natives-windows" + runtime "org.lwjgl:lwjgl-jemalloc:${lwjglVersion}:natives-linux" + runtime "org.lwjgl:lwjgl-jemalloc:${lwjglVersion}:natives-macos" + runtime "org.lwjgl:lwjgl-openal:${lwjglVersion}:natives-windows" + runtime "org.lwjgl:lwjgl-openal:${lwjglVersion}:natives-linux" + runtime "org.lwjgl:lwjgl-openal:${lwjglVersion}:natives-macos" } \ No newline at end of file