generate difference in the compilation in debug ant compilation realease

This commit is contained in:
Edouard Dupin 2012-03-08 17:44:56 +01:00
parent f8ee2bb5d4
commit 0bd34c8e0f

View File

@ -12,9 +12,15 @@ include $(LOCAL_PATH)/file.mk
LOCAL_SRC_FILES := $(FILE_LIST)
LOCAL_LDLIBS :=
LOCAL_CFLAGS := -D__PLATFORM__Linux \
ifeq ($(DEBUG),1)
LOCAL_CFLAGS := -D__PLATFORM__Linux \
-DEWOL_USE_FREE_TYPE \
-DDRAW_DEBUG_LEVEL=3
else
LOCAL_CFLAGS := -D__PLATFORM__Linux \
-DEWOL_USE_FREE_TYPE \
-DDRAW_DEBUG_LEVEL=1
endif
include $(BUILD_EXECUTABLE)