| 1234567891011121314151617181920212223242526272829303132333435 |
- #####################################################
- # these are the ant build properties for bullet-jme #
- #####################################################
- bullet.library.name=bulletjme
- bullet.library.version=0.9
- # change if bullet folder has different location
- bullet.folder=../bullet-2.79
- # compile options
- bullet.compile.debug=false
- # native library compilation options
- bullet.osx.compiler=g++
- bullet.osx.syslibroot=/Developer/SDKs/MacOSX10.6.sdk
- # change this to msvc for MS Visual Studio compiler
- bullet.windows.compiler=g++
- bullet.linux.compiler=g++
- bullet.solaris.compiler=g++
- # native header include directories
- bullet.java.include=${java.home}/../include
- # OSX has no JRE, only JDK
- bullet.osx.java.include=/System/Library/Frameworks/JavaVM.framework/Headers
- # location of Android NDK
- ndk.dir=/opt/android-ndk-r7
- # dont change these..
- bullet.bullet.include=${bullet.folder}/src
- bullet.build.dir=build/bullet/
- bullet.source.dir=src/bullet-native
- bullet.output.base=lib/bullet
- bullet.output.dir=${bullet.output.base}/jarcontent/native
- bullet.jme.dir=dist
- bullet.lib.dir=dist/lib
|