mirror of https://github.com/axmolengine/axmol.git
14 lines
534 B
Makefile
14 lines
534 B
Makefile
APP_STL := gnustl_static
|
|
|
|
# add -Wno-literal-suffix to avoid warning: warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]
|
|
# in NDK_ROOT/arch-arm/usr/include/sys/cdefs_elf.h:35:28: when using ndk-r9
|
|
APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -std=c++11 -Wno-literal-suffix -fsigned-char
|
|
|
|
APP_DEBUG := $(strip $(NDK_DEBUG))
|
|
ifeq ($(APP_DEBUG),1)
|
|
APP_CPPFLAGS += -DCOCOS2D_DEBUG=1
|
|
APP_OPTIM := debug
|
|
else
|
|
APP_CPPFLAGS += -DNDEBUG
|
|
APP_OPTIM := release
|
|
endif |