2015-05-18 13:41:58 +08:00
|
|
|
APP_STL := gnustl_static
|
|
|
|
|
|
|
|
# Uncomment this line to compile to armeabi-v7a, your application will run faster but support less devices
|
|
|
|
#APP_ABI := armeabi-v7a
|
|
|
|
|
2015-07-22 12:01:34 +08:00
|
|
|
APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -std=c++11 -fsigned-char
|
2015-05-18 13:41:58 +08:00
|
|
|
APP_LDFLAGS := -latomic
|
2016-07-08 15:29:35 +08:00
|
|
|
APP_ABI := armeabi
|
2017-04-06 15:41:38 +08:00
|
|
|
APP_SHORT_COMMANDS := true
|
2015-06-18 17:22:30 +08:00
|
|
|
|
2015-05-18 13:41:58 +08:00
|
|
|
ifeq ($(NDK_DEBUG),1)
|
|
|
|
APP_CPPFLAGS += -DCOCOS2D_DEBUG=1
|
|
|
|
APP_OPTIM := debug
|
|
|
|
else
|
|
|
|
APP_CPPFLAGS += -DNDEBUG
|
|
|
|
APP_OPTIM := release
|
|
|
|
endif
|