Files
wnmj/proj.android/jni/Application.mk

19 lines
444 B
Makefile
Raw Permalink Normal View History

2026-02-13 14:34:15 +08:00
APP_STL := gnustl_static
2026-03-01 13:48:24 +08:00
#TARGET_CPU_API := armeabi-v7a
#APP_ABI := armeabi-v7a
#APP_PLATFORM := android-14
2026-02-13 14:34:15 +08:00
2026-03-01 13:48:24 +08:00
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
2026-02-13 14:34:15 +08:00
APP_LDFLAGS := -latomic
ifeq ($(NDK_DEBUG),1)
APP_CPPFLAGS += -DCOCOS2D_DEBUG=1
APP_OPTIM := debug
else
APP_CPPFLAGS += -DNDEBUG
APP_OPTIM := release
endif