19 lines
444 B
Makefile
19 lines
444 B
Makefile
|
|
APP_STL := gnustl_static
|
||
|
|
|
||
|
|
#TARGET_CPU_API := armeabi-v7a
|
||
|
|
#APP_ABI := armeabi-v7a
|
||
|
|
#APP_PLATFORM := android-14
|
||
|
|
|
||
|
|
APP_CFLAGS += -Wno-error=format-security -mno-unaligned-access
|
||
|
|
APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -std=c++11 -fsigned-char -mno-unaligned-access
|
||
|
|
APP_LDFLAGS := -latomic
|
||
|
|
|
||
|
|
|
||
|
|
ifeq ($(NDK_DEBUG),1)
|
||
|
|
APP_CPPFLAGS += -DCOCOS2D_DEBUG=1
|
||
|
|
APP_OPTIM := debug
|
||
|
|
else
|
||
|
|
APP_CPPFLAGS += -DNDEBUG
|
||
|
|
APP_OPTIM := release
|
||
|
|
endif
|