modified Android build to allow between a DEBUG vs RELEASE build of the native code. When doing an ndk build run the following to do a release build 'DEBUG=RELEASE ndk-build'

This commit is contained in:
techdragon.nguyen@gmail.com
2012-04-17 11:24:02 +00:00
parent 7711badc39
commit f80127dff3
3 changed files with 8 additions and 4 deletions
+4 -1
View File
@@ -2,4 +2,7 @@ APP_PROJECT_PATH := $(call my-dir)/..
APP_CPPFLAGS += -frtti -fexceptions
APP_ABI := armeabi armeabi-v7a
APP_STL := gnustl_static
APP_MODULES := libpng libjpeg main SDL
APP_MODULES := libpng libjpeg main SDL
#APP_OPTIM is 'release' by default
APP_OPTIM := release