Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.04 KB | None | 0 0
  1.     <target name="-nativelib-linux-64" if="doBuildLinuxBinary64">
  2.         <echo message="Building 64 bit Linux version of native bullet"/>
  3.         <mkdir dir="${bullet.output.dir}/linux"/>
  4.         <cc name="${bullet.linux.compiler}" warnings="severe" debug="${bullet.compile.debug}" link="shared" outfile="${bullet.output.dir}/linux/${bullet.library.name}64" objdir="build/bullet-native-64">
  5.             <fileset dir="${bullet.source.dir}">
  6.                 <include name="*.cpp">
  7.                 </include>
  8.             </fileset>
  9.             <compilerarg value="-fpermissive"/>
  10.             <includepath path="${bullet.java.include}"/>
  11.             <includepath path="${bullet.java.include}/linux"/>
  12.             <includepath path="${bullet.bullet.include}"/>
  13.             <linker name="${bullet.linux.compiler}">
  14.                 <libset dir="build/bullet-base-64" libs="BulletMultiThreaded,BulletDynamics,BulletCollision,LinearMath"/>
  15.             </linker>
  16.         </cc>
  17.         <delete file="${bullet.output.dir}/linux/history.xml"/>
  18.     </target>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement