native bullet build:

- avoid cleaning android build products when not cleaning project

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8911 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
nor..67 13 years ago
parent 987e55606a
commit 33a8268586
  1. 6
      engine/nbproject/build-bullet-natives.xml

@ -433,10 +433,6 @@
</target> </target>
<target name="compile-android" description="compiles libbulletjme using the Android NDK" depends="-check-android-ndk" if="haveAndoidNdk"> <target name="compile-android" description="compiles libbulletjme using the Android NDK" depends="-check-android-ndk" if="haveAndoidNdk">
<!-- delete previous android jni, libs, and obj subdirectories for a clean start -->
<delete dir="build/bullet-android/jni" failonerror="false"/>
<delete dir="build/bullet-android/libs" failonerror="false"/>
<delete dir="build/bullet-android/obj" failonerror="false"/>
<!-- create the android subdirectory in jarcontent for the libbulletjme.so shared library --> <!-- create the android subdirectory in jarcontent for the libbulletjme.so shared library -->
<mkdir dir="${bullet.output.base}/android"/> <mkdir dir="${bullet.output.base}/android"/>
<!-- create the jni subdirectory --> <!-- create the jni subdirectory -->
@ -454,7 +450,7 @@
</copy> </copy>
<!-- copy Bullet-2.79 files into jni directory --> <!-- copy Bullet-2.79 files into jni directory -->
<copy todir="build/bullet-android/jni" verbose="true" flatten="false"> <copy todir="build/bullet-android/jni" verbose="true" flatten="false" overwrite="false">
<fileset dir="${bullet.bullet.include}"> <fileset dir="${bullet.bullet.include}">
<include name="**/*.cpp"/> <include name="**/*.cpp"/>
<include name="**/*.h"/> <include name="**/*.h"/>

Loading…
Cancel
Save