bullet-native.properties 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #####################################################
  2. # these are the ant build properties for bullet-jme #
  3. #####################################################
  4. bullet.library.name=bulletjme
  5. bullet.library.version=0.9
  6. # location of Android NDK if available
  7. ndk.dir=/Users/normenhansen/Documents/Code-Import/android-ndk-r7
  8. # change if bullet version changes
  9. bullet.folder=../bullet-2.81-rev2613
  10. bullet.download=https://bullet.googlecode.com/files/bullet-2.81-rev2613.zip
  11. # compile options
  12. bullet.compile.debug=false
  13. # native library compilation options
  14. bullet.osx.compiler=g++
  15. bullet.osx.syslibroot=/Applications/XCode/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk
  16. #/Developer/SDKs/MacOSX10.6.sdk
  17. # change this to msvc for MS Visual Studio compiler
  18. bullet.windows.compiler=g++
  19. bullet.linux.compiler=g++
  20. bullet.solaris.compiler=g++
  21. #cross compilation options, disable if just developing / testing on linux
  22. cross.compile=true
  23. cross.compile.target=i686-w64-mingw32
  24. cross.compile.target64=x86_64-w64-mingw32
  25. bullet.linux.crosscompiler=g++-cross
  26. # exec command for cmake and make for different platforms,
  27. # needed to compile bullet before compiling the jme bullet libraries
  28. cmake.windows=cmake
  29. make.windows=mingw32-make
  30. cmake.linux=cmake
  31. make.linux=make
  32. cmake.osx=/opt/local/bin/cmake
  33. make.osx=make
  34. # native header include directories
  35. bullet.java.include=${java.home}/../include
  36. # OSX has no JRE, only JDK
  37. bullet.osx.java.include=/System/Library/Frameworks/JavaVM.framework/Headers
  38. # dont change these..
  39. bullet.bullet.include=${bullet.folder}/src
  40. bullet.build.dir=build/bullet/
  41. bullet.source.dir=src/bullet-native
  42. bullet.output.base=lib/bullet
  43. bullet.output.dir=${bullet.output.base}/jarcontent/native
  44. bullet.jme.dir=dist
  45. bullet.lib.dir=dist/lib