- use separate build path for bullet native .o files

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8814 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
nor..67 13 years ago
parent d7f12c76d9
commit 0977957706
  1. 9
      engine/src/bullet/native/build.xml

@ -137,12 +137,13 @@
<mkdir dir="${bullet.source.dir}"/> <mkdir dir="${bullet.source.dir}"/>
<mkdir dir="${bullet.build.dir}"/> <mkdir dir="${bullet.build.dir}"/>
<mkdir dir="${bullet.output.dir}"/> <mkdir dir="${bullet.output.dir}"/>
<mkdir dir="build/bullet-native"/>
</target> </target>
<target name="-nativelib-osx" if="isMac"> <target name="-nativelib-osx" if="isMac">
<echo message="Building MacOSX version of native bullet"/> <echo message="Building MacOSX version of native bullet"/>
<mkdir dir="${bullet.output.dir}/macosx"/> <mkdir dir="${bullet.output.dir}/macosx"/>
<cc name="${bullet.osx.compiler}" warnings="none" debug="${bullet.compile.debug}" link="shared" outfile="${bullet.output.dir}/macosx/${bullet.library.name}" objdir="${bullet.build.dir}"> <cc name="${bullet.osx.compiler}" warnings="none" debug="${bullet.compile.debug}" link="shared" outfile="${bullet.output.dir}/macosx/${bullet.library.name}" objdir="build/bullet-native">
<fileset dir="${bullet.source.dir}"> <fileset dir="${bullet.source.dir}">
<include name="*.cpp"> <include name="*.cpp">
</include> </include>
@ -177,7 +178,7 @@
<target name="-nativelib-linux" if="isLinux"> <target name="-nativelib-linux" if="isLinux">
<echo message="Building Linux version of native bullet"/> <echo message="Building Linux version of native bullet"/>
<mkdir dir="${bullet.output.dir}/linux"/> <mkdir dir="${bullet.output.dir}/linux"/>
<cc name="${bullet.linux.compiler}" warnings="severe" debug="${bullet.compile.debug}" link="shared" outfile="${bullet.output.dir}/linux/${bullet.library.name}" objdir="${bullet.build.dir}"> <cc name="${bullet.linux.compiler}" warnings="severe" debug="${bullet.compile.debug}" link="shared" outfile="${bullet.output.dir}/linux/${bullet.library.name}" objdir="build/bullet-native">
<fileset dir="${bullet.source.dir}"> <fileset dir="${bullet.source.dir}">
<include name="*.cpp"> <include name="*.cpp">
</include> </include>
@ -202,7 +203,7 @@
<target name="-nativelib-solaris" if="isSolaris"> <target name="-nativelib-solaris" if="isSolaris">
<echo message="Building Solaris version of native bullet"/> <echo message="Building Solaris version of native bullet"/>
<mkdir dir="${bullet.output.dir}/linux"/> <mkdir dir="${bullet.output.dir}/linux"/>
<cc name="${bullet.solaris.compiler}" warnings="severe" debug="${bullet.compile.debug}" link="shared" outfile="${bullet.output.dir}/solaris/${bullet.library.name}" objdir="${bullet.build.dir}"> <cc name="${bullet.solaris.compiler}" warnings="severe" debug="${bullet.compile.debug}" link="shared" outfile="${bullet.output.dir}/solaris/${bullet.library.name}" objdir="build/bullet-native">
<fileset dir="${bullet.source.dir}"> <fileset dir="${bullet.source.dir}">
<include name="*.cpp"> <include name="*.cpp">
</include> </include>
@ -233,7 +234,7 @@
<target name="-nativelib-windows" if="isWindows"> <target name="-nativelib-windows" if="isWindows">
<echo message="Building Windows version of native bullet"/> <echo message="Building Windows version of native bullet"/>
<mkdir dir="${bullet.output.dir}/windows"/> <mkdir dir="${bullet.output.dir}/windows"/>
<cc multithreaded="" name="${bullet.windows.compiler}" warnings="none" debug="${bullet.compile.debug}" outtype="shared" outfile="${bullet.output.dir}/windows/${bullet.library.name}" objdir="${bullet.build.dir}"> <cc multithreaded="" name="${bullet.windows.compiler}" warnings="none" debug="${bullet.compile.debug}" outtype="shared" outfile="${bullet.output.dir}/windows/${bullet.library.name}" objdir="build/bullet-native">
<fileset dir="${bullet.source.dir}"> <fileset dir="${bullet.source.dir}">
<include name="*.cpp"> <include name="*.cpp">
</include> </include>

Loading…
Cancel
Save