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

14 lines
308 B
Makefile
Raw Normal View History

APP_STL := gnustl_static
2015-05-08 15:49:33 +08:00
APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCC_ENABLE_BULLET_INTEGRATION=1 -std=c++11 -fsigned-char
APP_LDFLAGS := -latomic
2013-08-26 18:02:51 +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
2014-10-09 18:28:09 +08:00