Kaydet (Commit) 22274468 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Test $(DEBUG) for being non-empty instead of "1" (which it is not)

Change-Id: I22e7a142bb874653344a7ffcc55e8a062669fa2a
üst 9ab9d22f
...@@ -22,7 +22,7 @@ diff -up win32/Makefile.msvc.dt win32/Makefile.msvc ...@@ -22,7 +22,7 @@ diff -up win32/Makefile.msvc.dt win32/Makefile.msvc
!endif !endif
!if "$(WITH_ICU)" == "1" !if "$(WITH_ICU)" == "1"
-LIBS = $(LIBS) icu.lib -LIBS = $(LIBS) icu.lib
+!if "$(DEBUG)" == "1" +!if "$(DEBUG)" != ""
+LIBS = $(LIBS) icuind.lib icuucd.lib icudtd.lib +LIBS = $(LIBS) icuind.lib icuucd.lib icudtd.lib
+!else +!else
+LIBS = $(LIBS) icuin.lib icuuc.lib icudt.lib +LIBS = $(LIBS) icuin.lib icuuc.lib icudt.lib
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment