From: Vadim Zeitlin <vadim@wxwidgets.org> Date: Tue, 2 Oct 2001 16:28:14 +0000 (+0000) Subject: fix for using debug extra libs in release build and vice versa X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/85f7ec579ec34fdcfd5d7cc827b74249742cb410 fix for using debug extra libs in release build and vice versa git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11785 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/distrib/msw/tmake/vc6app.t b/distrib/msw/tmake/vc6app.t index 7574ec20ef..5caf700673 100644 --- a/distrib/msw/tmake/vc6app.t +++ b/distrib/msw/tmake/vc6app.t @@ -125,8 +125,8 @@ $EXTRA_LIBS.=" png jpeg tiff"; } foreach ( split(/ /, $EXTRA_LIBS) ) { - $DEBUG_EXTRA_LIBS .= "$WXDIR\\lib\\$_.lib "; - $RELEASE_EXTRA_LIBS .= "$WXDIR\\lib\\$_" . "d.lib "; + $RELEASE_EXTRA_LIBS .= "$WXDIR\\lib\\$_.lib "; + $DEBUG_EXTRA_LIBS .= "$WXDIR\\lib\\$_" . "d.lib "; } #! the wxWin lib name itself is composed from the basename with various