Added the _UI_RELEASE macro for turning off debugging. We won't actually turn off debugging just yet.

This commit is contained in:
Pietro Gagliardi 2016-05-14 11:16:04 -04:00
parent 7ebb4cea9a
commit 2f6329adcf
1 changed files with 5 additions and 0 deletions

View File

@ -42,6 +42,11 @@ else
-D "_UI_EXTERN=__declspec(dllexport) extern"
endif
ifeq ($(RELEASE),1)
CFLAGS += -D_UI_RELEASE
CXXFLAGS += -D_UI_RELEASE
endif
ifeq ($(USESSONAME),1)
LDFLAGS += $(SONAMEFLAG)$(NAME)$(SUFFIX)
endif