Application.mk 322 B

12345678910111213141516
  1. APP_STL := gnustl_static
  2. APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -std=c++11 -fsigned-char
  3. APP_LDFLAGS := -latomic
  4. APP_ABI := armeabi
  5. APP_SHORT_COMMANDS := true
  6. ifeq ($(NDK_DEBUG),1)
  7. APP_CPPFLAGS += -DCOCOS2D_DEBUG=1
  8. APP_OPTIM := debug
  9. else
  10. APP_CPPFLAGS += -DNDEBUG
  11. APP_OPTIM := release
  12. endif