custom.bmk 880 B

12345678910111213141516171819202122232425262728293031
  1. # Example options
  2. # ** compiler optimisation **
  3. #setccopt optimization -O3
  4. # ** specific architecture **
  5. #setwin32ccopt arch -march=pentium3
  6. #setmacx86ccopt arch -march=nocona
  7. #setmacx86ccopt math -msse3
  8. # ** android configuration **
  9. # ** architecture is determined by build settings **
  10. # ** NOTE : android build requires bmk resources folder at BlitzMax/resources **
  11. #addoption android.home "/PATH/TO/SDK/android-sdk-macosx"
  12. #addoption android.sdk "/PATH/TO/SDK/android-sdk-macosx"
  13. #addoption android.ndk "/PATH/TO/NDK/android-ndk-r10c"
  14. #addoption android.toolchain.version "4.9"
  15. #addoption android.platform "12"
  16. # ** Optional SDK target **
  17. # Will try to determine valid target to update project.properties, if not set.
  18. #addoption android.sdk.target "23"
  19. # ** optional ant location **
  20. # ** defaults to resources/apache-ant **
  21. #addoption ant.home "/PATH/TO/ANT/HOME"