Application.mk 495 B

12345678910111213
  1. APP_PLATFORM := android-18
  2. APP_ABI := ABI
  3. APP_STL := c++_static
  4. RELEASE_CONDITION # RELEASE
  5. APP_OPTIM := release # if not specified then default value is taken from "AndroidManifest.xml" file 'Debuggable' value
  6. APP_CFLAGS := -DDEBUG=0 -O3
  7. APP_CPPFLAGS:= -DDEBUG=0 -O3
  8. else # DEBUG
  9. APP_OPTIM := debug # if not specified then default value is taken from "AndroidManifest.xml" file 'Debuggable' value
  10. APP_CFLAGS := -DDEBUG=1
  11. APP_CPPFLAGS:= -DDEBUG=1
  12. endif