axmol/tests/lua-tests/project/proj.android/app/jni/Application.mk

15 lines
342 B
Makefile
Raw Normal View History

APP_STL := c++_static
2015-05-18 13:41:58 +08:00
APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -std=c++11 -fsigned-char -Wno-extern-c-compat
2015-05-18 13:41:58 +08:00
APP_LDFLAGS := -latomic
APP_ABI := armeabi-v7a
APP_SHORT_COMMANDS := true
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