Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ricardoquesada
Created January 29, 2016 03:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricardoquesada/e037b8c7e832240d85fc to your computer and use it in GitHub Desktop.
Save ricardoquesada/e037b8c7e832240d85fc to your computer and use it in GitHub Desktop.
Application.mk with armeabi-v7a support
APP_STL := gnustl_static
APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -std=c++11 -fsigned-char
APP_LDFLAGS := -latomic
APP_ABI := armeabi-v7a
ifeq ($(NDK_DEBUG),1)
APP_CPPFLAGS += -DCOCOS2D_DEBUG=1
APP_OPTIM := debug
else
APP_CPPFLAGS += -DNDEBUG
APP_OPTIM := release
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment