Browse Source

- change behavior of "buildNativeProjects" setting to not exclude native subprojects from build but instead copy precompiled binaries
- disable unnecessary build of static bullet libraries

Normen Hansen 10 years ago
parent
commit
f942b35b2c
1 changed files with 2 additions and 4 deletions
  1. 2 4
      build.gradle

+ 2 - 4
build.gradle

@@ -30,10 +30,8 @@ dependencies {
     optlibs project(':jme3-jogl')
     optlibs project(':jme3-android')
     optlibs project(':jme3-ios')
-    if(buildNativeProjects == "true"){
-        optlibs project(':jme3-android-native')
-        optlibs project(':jme3-bullet-native')
-    }
+    optlibs project(':jme3-android-native')
+    optlibs project(':jme3-bullet-native')
     testdatalibs project(':jme3-testdata')
 
     examplelibs project(':jme3-examples')