mirror of https://github.com/axmolengine/axmol.git
15 lines
300 B
Makefile
15 lines
300 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
|
|
|
|
|
|
ifeq ($(NDK_DEBUG),1)
|
|
APP_CPPFLAGS += -DCOCOS2D_DEBUG=1
|
|
APP_OPTIM := debug
|
|
else
|
|
APP_CPPFLAGS += -DNDEBUG
|
|
APP_OPTIM := release
|
|
endif
|