axmol/tests/cpp-empty-test/proj.android/jni/Application.mk

17 lines
317 B
Makefile
Raw Normal View History

APP_STL := gnustl_static
APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -std=c++11 -fsigned-char
APP_LDFLAGS := -latomic
#APP_ABI := arm64-v8a
2016-07-08 16:00:32 +08:00
APP_ABI := armeabi
2014-03-10 20:07:20 +08:00
2014-05-22 01:13:44 +08:00
ifeq ($(NDK_DEBUG),1)
2014-05-22 01:13:44 +08:00
APP_CPPFLAGS += -DCOCOS2D_DEBUG=1
APP_OPTIM := debug
else
APP_CPPFLAGS += -DNDEBUG
APP_OPTIM := release
endif