mirror of https://github.com/axmolengine/axmol.git
16 lines
335 B
Makefile
16 lines
335 B
Makefile
APP_STL := c++_static
|
|
NDK_TOOLCHAIN_VERSION=clang
|
|
|
|
APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -std=c++11 -fsigned-char
|
|
APP_LDFLAGS := -latomic
|
|
|
|
|
|
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
|