Created
January 29, 2016 03:07
-
-
Save ricardoquesada/e037b8c7e832240d85fc to your computer and use it in GitHub Desktop.
Application.mk with armeabi-v7a support
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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