From 7bf54362633773a9e61a8a69471b6ccd2206e0ff Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 6 Oct 1999 19:09:07 +0000 Subject: [PATCH] Allow override of /MDd git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3856 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/makevc.env | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/makevc.env b/src/makevc.env index 0082db93dc..2cae086a8c 100644 --- a/src/makevc.env +++ b/src/makevc.env @@ -150,14 +150,18 @@ OPT = /Od /Gy # ***N.B.*** to save space/time, comment out /FR to avoid browse info (.sbr files) being generated DEBUG_FLAGS= /Zi /D__WXDEBUG__ # /DDEBUG=1 # /FR LINK_DEBUG_FLAGS=-debug:full -debugtype:cv # /PDB:NONE -CRTFLAG=/MDd +_CRTFLAG=/MDd !else # /O1 - smallest code # /O2 - fastest code OPT = /O1 # /O2 # /Od DEBUG_FLAGS= LINK_DEBUG_FLAGS=/RELEASE -CRTFLAG=/MD +_CRTFLAG=/MD +!endif + +!if "$(CRTFLAG)" == "" +CRTFLAG=$(_CRTFLAG) !endif !if "$(DLL)" == "0" -- 2.47.2