Files

19 lines
444 B
Makefile
Raw Permalink Normal View History

2026-03-03 13:56:44 +08:00
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