axmol/tests/game-controller-test/proj.android/jni/Application.mk

15 lines
315 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
2016-07-08 16:00:32 +08:00
APP_ABI := armeabi
#APP_ABI := arm64-v8a
2014-06-30 03:25:49 +08:00
ifeq ($(NDK_DEBUG),1)
2014-06-30 03:25:49 +08:00
APP_CPPFLAGS += -DCOCOS2D_DEBUG=1
APP_OPTIM := debug
else
APP_CPPFLAGS += -DNDEBUG
APP_OPTIM := release
endif