Use "d" suffix according to DEBUG_RUNTIME_LIBS, not DEBUG_FLAG.

The "d" suffix is now only used under Windows and indicates that we link with
debug CRT version.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61887 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-09-12 11:29:11 +00:00
parent 7d9550df50
commit c6684d425d
68 changed files with 1077 additions and 1106 deletions

View File

@@ -77,10 +77,11 @@ BUILD = debug
DEBUG_INFO = default
!endif
# Should __WXDEBUG__ be defined? The default value "default" means that it will
# be defined if BUILD=debug and not defined if BUILD=release. [0,1,default]
# Value of wxDEBUG_LEVEL. The default value is the same as 1 and means that all
# but expensive assert checks are enabled, use 0 to completely remove debugging
# code. [0,1,default]
!ifndef DEBUG_FLAG
DEBUG_FLAG = default
DEBUG_FLAG = 1
!endif
# Multiple libraries or single huge monolithic one? [0,1]