From 0c32c24e5e5c48ba538d72e58767b21bc4989d70 Mon Sep 17 00:00:00 2001 From: Kirill Vainer Date: Wed, 4 May 2016 13:17:47 -0400 Subject: [PATCH] bullet native: fix mingw target platform --- jme3-bullet-native/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jme3-bullet-native/build.gradle b/jme3-bullet-native/build.gradle index 1299db8ba..f1875647c 100644 --- a/jme3-bullet-native/build.gradle +++ b/jme3-bullet-native/build.gradle @@ -168,7 +168,7 @@ model { assembler.executable "i686-w64-mingw32-g++" staticLibArchiver.executable "i686-w64-mingw32-gcc-ar" } - target("windows_x86") + target("Windows32") } mingw_x86_64(Gcc) { eachPlatform() { @@ -178,7 +178,7 @@ model { assembler.executable "x86_64-w64-mingw32-g++" staticLibArchiver.executable "x86_64-w64-mingw32-gcc-ar" } - target("windows_x86_64") + target("Windows64") } } } @@ -229,4 +229,4 @@ class MyDownload extends DefaultTask { void download() { ant.get(src: sourceUrl, dest: target) } -} \ No newline at end of file +}