ICU-3855 Make sure that assertions are disabled in the library code in release mode.

The project files work the same way.

X-SVN-Rev: 16195
This commit is contained in:
George Rhoten 2004-08-27 03:56:13 +00:00
parent 2327dcdc7f
commit bc04cf3e3f

View File

@ -38,6 +38,11 @@ THREADSCFLAGS += /MD
THREADSCXXFLAGS += /MD
endif
ifeq ($(ENABLE_RELEASE),1)
# Make sure that assertions are disabled
CPPFLAGS+=-DU_RELEASE=1
endif
# /GF pools strings and places them into read-only memory
# /GX enables exception handling
CFLAGS += /GF