From 4386f20f4f567aeced46efd47c3725ec4ab76ff9 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 7 May 2014 13:09:55 +0000 Subject: [PATCH] Generate debug information for all MSVC builds. We want to have debug information even for the release builds as it doesn't affect the binaries produced but greatly helps when debugging, so create PDB for all release builds as well in the manually maintained MSVS files (this was already the case for Win32 release builds but not x64 ones for some reason). This also fixes the problem with "None" being an invalid value for DebugInformationFormat with MSVC 10 as a side effect. Closes #16236. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76475 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- build/msw/wx_vc10_adv.vcxproj | 4 ++-- build/msw/wx_vc10_aui.vcxproj | 4 ++-- build/msw/wx_vc10_base.vcxproj | 4 ++-- build/msw/wx_vc10_core.vcxproj | 4 ++-- build/msw/wx_vc10_gl.vcxproj | 4 ++-- build/msw/wx_vc10_html.vcxproj | 4 ++-- build/msw/wx_vc10_media.vcxproj | 4 ++-- build/msw/wx_vc10_net.vcxproj | 4 ++-- build/msw/wx_vc10_propgrid.vcxproj | 4 ++-- build/msw/wx_vc10_qa.vcxproj | 4 ++-- build/msw/wx_vc10_ribbon.vcxproj | 4 ++-- build/msw/wx_vc10_richtext.vcxproj | 4 ++-- build/msw/wx_vc10_stc.vcxproj | 4 ++-- build/msw/wx_vc10_webview.vcxproj | 4 ++-- build/msw/wx_vc10_wxexpat.vcxproj | 4 ++-- build/msw/wx_vc10_wxjpeg.vcxproj | 4 ++-- build/msw/wx_vc10_wxpng.vcxproj | 4 ++-- build/msw/wx_vc10_wxregex.vcxproj | 4 ++-- build/msw/wx_vc10_wxscintilla.vcxproj | 4 ++-- build/msw/wx_vc10_wxtiff.vcxproj | 4 ++-- build/msw/wx_vc10_wxzlib.vcxproj | 4 ++-- build/msw/wx_vc10_xml.vcxproj | 4 ++-- build/msw/wx_vc10_xrc.vcxproj | 4 ++-- build/msw/wx_vc11_adv.vcxproj | 4 ++-- build/msw/wx_vc11_aui.vcxproj | 4 ++-- build/msw/wx_vc11_base.vcxproj | 4 ++-- build/msw/wx_vc11_core.vcxproj | 4 ++-- build/msw/wx_vc11_gl.vcxproj | 4 ++-- build/msw/wx_vc11_html.vcxproj | 4 ++-- build/msw/wx_vc11_media.vcxproj | 4 ++-- build/msw/wx_vc11_net.vcxproj | 4 ++-- build/msw/wx_vc11_propgrid.vcxproj | 4 ++-- build/msw/wx_vc11_qa.vcxproj | 4 ++-- build/msw/wx_vc11_ribbon.vcxproj | 4 ++-- build/msw/wx_vc11_richtext.vcxproj | 4 ++-- build/msw/wx_vc11_stc.vcxproj | 4 ++-- build/msw/wx_vc11_webview.vcxproj | 4 ++-- build/msw/wx_vc11_wxexpat.vcxproj | 4 ++-- build/msw/wx_vc11_wxjpeg.vcxproj | 4 ++-- build/msw/wx_vc11_wxpng.vcxproj | 4 ++-- build/msw/wx_vc11_wxregex.vcxproj | 4 ++-- build/msw/wx_vc11_wxscintilla.vcxproj | 4 ++-- build/msw/wx_vc11_wxtiff.vcxproj | 4 ++-- build/msw/wx_vc11_wxzlib.vcxproj | 4 ++-- build/msw/wx_vc11_xml.vcxproj | 4 ++-- build/msw/wx_vc11_xrc.vcxproj | 4 ++-- build/msw/wx_vc12_adv.vcxproj | 4 ++-- build/msw/wx_vc12_aui.vcxproj | 4 ++-- build/msw/wx_vc12_base.vcxproj | 4 ++-- build/msw/wx_vc12_core.vcxproj | 4 ++-- build/msw/wx_vc12_gl.vcxproj | 4 ++-- build/msw/wx_vc12_html.vcxproj | 4 ++-- build/msw/wx_vc12_media.vcxproj | 4 ++-- build/msw/wx_vc12_net.vcxproj | 4 ++-- build/msw/wx_vc12_propgrid.vcxproj | 4 ++-- build/msw/wx_vc12_qa.vcxproj | 4 ++-- build/msw/wx_vc12_ribbon.vcxproj | 4 ++-- build/msw/wx_vc12_richtext.vcxproj | 4 ++-- build/msw/wx_vc12_stc.vcxproj | 4 ++-- build/msw/wx_vc12_webview.vcxproj | 4 ++-- build/msw/wx_vc12_wxexpat.vcxproj | 4 ++-- build/msw/wx_vc12_wxjpeg.vcxproj | 4 ++-- build/msw/wx_vc12_wxpng.vcxproj | 4 ++-- build/msw/wx_vc12_wxregex.vcxproj | 4 ++-- build/msw/wx_vc12_wxscintilla.vcxproj | 4 ++-- build/msw/wx_vc12_wxtiff.vcxproj | 4 ++-- build/msw/wx_vc12_wxzlib.vcxproj | 4 ++-- build/msw/wx_vc12_xml.vcxproj | 4 ++-- build/msw/wx_vc12_xrc.vcxproj | 4 ++-- 69 files changed, 138 insertions(+), 138 deletions(-) diff --git a/build/msw/wx_vc10_adv.vcxproj b/build/msw/wx_vc10_adv.vcxproj index f66c2998f8..5ef082e06e 100644 --- a/build/msw/wx_vc10_adv.vcxproj +++ b/build/msw/wx_vc10_adv.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_aui.vcxproj b/build/msw/wx_vc10_aui.vcxproj index f675fd7d84..3035839bc2 100644 --- a/build/msw/wx_vc10_aui.vcxproj +++ b/build/msw/wx_vc10_aui.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_base.vcxproj b/build/msw/wx_vc10_base.vcxproj index 5ab1b7d381..fa42d756fc 100644 --- a/build/msw/wx_vc10_base.vcxproj +++ b/build/msw/wx_vc10_base.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_core.vcxproj b/build/msw/wx_vc10_core.vcxproj index 65eeb9c419..a15507b230 100644 --- a/build/msw/wx_vc10_core.vcxproj +++ b/build/msw/wx_vc10_core.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_gl.vcxproj b/build/msw/wx_vc10_gl.vcxproj index 6945c2edcd..4129b7fbd8 100644 --- a/build/msw/wx_vc10_gl.vcxproj +++ b/build/msw/wx_vc10_gl.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_html.vcxproj b/build/msw/wx_vc10_html.vcxproj index f294216310..b2f47ebb39 100644 --- a/build/msw/wx_vc10_html.vcxproj +++ b/build/msw/wx_vc10_html.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_media.vcxproj b/build/msw/wx_vc10_media.vcxproj index ba3d8d87ce..e33df95e28 100644 --- a/build/msw/wx_vc10_media.vcxproj +++ b/build/msw/wx_vc10_media.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_net.vcxproj b/build/msw/wx_vc10_net.vcxproj index 328ede4dc5..0fdc1ac9fc 100644 --- a/build/msw/wx_vc10_net.vcxproj +++ b/build/msw/wx_vc10_net.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_propgrid.vcxproj b/build/msw/wx_vc10_propgrid.vcxproj index 04e31a02c7..7397cbfbbd 100644 --- a/build/msw/wx_vc10_propgrid.vcxproj +++ b/build/msw/wx_vc10_propgrid.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_qa.vcxproj b/build/msw/wx_vc10_qa.vcxproj index 33f3431dc7..7e91e8df4f 100644 --- a/build/msw/wx_vc10_qa.vcxproj +++ b/build/msw/wx_vc10_qa.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_ribbon.vcxproj b/build/msw/wx_vc10_ribbon.vcxproj index c5c480488f..692387ce09 100644 --- a/build/msw/wx_vc10_ribbon.vcxproj +++ b/build/msw/wx_vc10_ribbon.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_richtext.vcxproj b/build/msw/wx_vc10_richtext.vcxproj index b42fcc924e..19e73f6870 100644 --- a/build/msw/wx_vc10_richtext.vcxproj +++ b/build/msw/wx_vc10_richtext.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_stc.vcxproj b/build/msw/wx_vc10_stc.vcxproj index 8ee5228de9..b3769ceb3e 100644 --- a/build/msw/wx_vc10_stc.vcxproj +++ b/build/msw/wx_vc10_stc.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_webview.vcxproj b/build/msw/wx_vc10_webview.vcxproj index 4c39a1d477..71c721122c 100644 --- a/build/msw/wx_vc10_webview.vcxproj +++ b/build/msw/wx_vc10_webview.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_wxexpat.vcxproj b/build/msw/wx_vc10_wxexpat.vcxproj index 70506ea04b..e8bba24427 100644 --- a/build/msw/wx_vc10_wxexpat.vcxproj +++ b/build/msw/wx_vc10_wxexpat.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_wxjpeg.vcxproj b/build/msw/wx_vc10_wxjpeg.vcxproj index 7cd3549075..cf11820bf3 100644 --- a/build/msw/wx_vc10_wxjpeg.vcxproj +++ b/build/msw/wx_vc10_wxjpeg.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_wxpng.vcxproj b/build/msw/wx_vc10_wxpng.vcxproj index 437bc68a1d..d5e4a8adb0 100644 --- a/build/msw/wx_vc10_wxpng.vcxproj +++ b/build/msw/wx_vc10_wxpng.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_wxregex.vcxproj b/build/msw/wx_vc10_wxregex.vcxproj index 39897ba83e..76c71f2185 100644 --- a/build/msw/wx_vc10_wxregex.vcxproj +++ b/build/msw/wx_vc10_wxregex.vcxproj @@ -267,7 +267,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -405,7 +405,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_wxscintilla.vcxproj b/build/msw/wx_vc10_wxscintilla.vcxproj index 7fb54f2f1b..e774f241c0 100644 --- a/build/msw/wx_vc10_wxscintilla.vcxproj +++ b/build/msw/wx_vc10_wxscintilla.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_wxtiff.vcxproj b/build/msw/wx_vc10_wxtiff.vcxproj index c790dab989..c910b3a2f3 100644 --- a/build/msw/wx_vc10_wxtiff.vcxproj +++ b/build/msw/wx_vc10_wxtiff.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_wxzlib.vcxproj b/build/msw/wx_vc10_wxzlib.vcxproj index e4ada9e0d5..e9a147d0c7 100644 --- a/build/msw/wx_vc10_wxzlib.vcxproj +++ b/build/msw/wx_vc10_wxzlib.vcxproj @@ -274,7 +274,7 @@ true Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -412,7 +412,7 @@ true Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_xml.vcxproj b/build/msw/wx_vc10_xml.vcxproj index 9500304925..da3382092c 100644 --- a/build/msw/wx_vc10_xml.vcxproj +++ b/build/msw/wx_vc10_xml.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc10_xrc.vcxproj b/build/msw/wx_vc10_xrc.vcxproj index abcfbaf336..7cfe9dd3ad 100644 --- a/build/msw/wx_vc10_xrc.vcxproj +++ b/build/msw/wx_vc10_xrc.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_adv.vcxproj b/build/msw/wx_vc11_adv.vcxproj index 194ed95b58..6fd3d7ed17 100644 --- a/build/msw/wx_vc11_adv.vcxproj +++ b/build/msw/wx_vc11_adv.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_aui.vcxproj b/build/msw/wx_vc11_aui.vcxproj index a08a955e01..94f478a62e 100644 --- a/build/msw/wx_vc11_aui.vcxproj +++ b/build/msw/wx_vc11_aui.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_base.vcxproj b/build/msw/wx_vc11_base.vcxproj index df7970b1d6..5f8a426e34 100644 --- a/build/msw/wx_vc11_base.vcxproj +++ b/build/msw/wx_vc11_base.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_core.vcxproj b/build/msw/wx_vc11_core.vcxproj index b0edcd3342..de187df205 100644 --- a/build/msw/wx_vc11_core.vcxproj +++ b/build/msw/wx_vc11_core.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_gl.vcxproj b/build/msw/wx_vc11_gl.vcxproj index 7405489d6e..43b3dc4015 100644 --- a/build/msw/wx_vc11_gl.vcxproj +++ b/build/msw/wx_vc11_gl.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_html.vcxproj b/build/msw/wx_vc11_html.vcxproj index a99d0750f2..440ea23e41 100644 --- a/build/msw/wx_vc11_html.vcxproj +++ b/build/msw/wx_vc11_html.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_media.vcxproj b/build/msw/wx_vc11_media.vcxproj index 1b694ecb37..f133c19e79 100644 --- a/build/msw/wx_vc11_media.vcxproj +++ b/build/msw/wx_vc11_media.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_net.vcxproj b/build/msw/wx_vc11_net.vcxproj index 50fff28b64..6374f3c992 100644 --- a/build/msw/wx_vc11_net.vcxproj +++ b/build/msw/wx_vc11_net.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_propgrid.vcxproj b/build/msw/wx_vc11_propgrid.vcxproj index bc16dd7ec3..37904e1bd5 100644 --- a/build/msw/wx_vc11_propgrid.vcxproj +++ b/build/msw/wx_vc11_propgrid.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_qa.vcxproj b/build/msw/wx_vc11_qa.vcxproj index c811595772..35cb0e0067 100644 --- a/build/msw/wx_vc11_qa.vcxproj +++ b/build/msw/wx_vc11_qa.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_ribbon.vcxproj b/build/msw/wx_vc11_ribbon.vcxproj index fef7743c52..cba163f45b 100644 --- a/build/msw/wx_vc11_ribbon.vcxproj +++ b/build/msw/wx_vc11_ribbon.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_richtext.vcxproj b/build/msw/wx_vc11_richtext.vcxproj index 1c5607055c..7d4d1615e0 100644 --- a/build/msw/wx_vc11_richtext.vcxproj +++ b/build/msw/wx_vc11_richtext.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_stc.vcxproj b/build/msw/wx_vc11_stc.vcxproj index d5be1ea997..3c374e7011 100644 --- a/build/msw/wx_vc11_stc.vcxproj +++ b/build/msw/wx_vc11_stc.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_webview.vcxproj b/build/msw/wx_vc11_webview.vcxproj index 68654d3787..dfe77f0b56 100644 --- a/build/msw/wx_vc11_webview.vcxproj +++ b/build/msw/wx_vc11_webview.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_wxexpat.vcxproj b/build/msw/wx_vc11_wxexpat.vcxproj index aff9dd78de..eec648f842 100644 --- a/build/msw/wx_vc11_wxexpat.vcxproj +++ b/build/msw/wx_vc11_wxexpat.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_wxjpeg.vcxproj b/build/msw/wx_vc11_wxjpeg.vcxproj index 131c1b8189..4a60e9112c 100644 --- a/build/msw/wx_vc11_wxjpeg.vcxproj +++ b/build/msw/wx_vc11_wxjpeg.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_wxpng.vcxproj b/build/msw/wx_vc11_wxpng.vcxproj index 835065a059..63104b6bca 100644 --- a/build/msw/wx_vc11_wxpng.vcxproj +++ b/build/msw/wx_vc11_wxpng.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_wxregex.vcxproj b/build/msw/wx_vc11_wxregex.vcxproj index 15ebf3ab31..b16d714bb7 100644 --- a/build/msw/wx_vc11_wxregex.vcxproj +++ b/build/msw/wx_vc11_wxregex.vcxproj @@ -267,7 +267,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -405,7 +405,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_wxscintilla.vcxproj b/build/msw/wx_vc11_wxscintilla.vcxproj index 0033b763cd..f29e4fc9b9 100644 --- a/build/msw/wx_vc11_wxscintilla.vcxproj +++ b/build/msw/wx_vc11_wxscintilla.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_wxtiff.vcxproj b/build/msw/wx_vc11_wxtiff.vcxproj index 296f2f3039..5be52a7604 100644 --- a/build/msw/wx_vc11_wxtiff.vcxproj +++ b/build/msw/wx_vc11_wxtiff.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_wxzlib.vcxproj b/build/msw/wx_vc11_wxzlib.vcxproj index cf533bdf3b..0d3c9ad07c 100644 --- a/build/msw/wx_vc11_wxzlib.vcxproj +++ b/build/msw/wx_vc11_wxzlib.vcxproj @@ -274,7 +274,7 @@ true Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -412,7 +412,7 @@ true Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_xml.vcxproj b/build/msw/wx_vc11_xml.vcxproj index dfd90f92a6..3a5bf4d13a 100644 --- a/build/msw/wx_vc11_xml.vcxproj +++ b/build/msw/wx_vc11_xml.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc11_xrc.vcxproj b/build/msw/wx_vc11_xrc.vcxproj index acf6b976eb..7651728dfa 100644 --- a/build/msw/wx_vc11_xrc.vcxproj +++ b/build/msw/wx_vc11_xrc.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_adv.vcxproj b/build/msw/wx_vc12_adv.vcxproj index 4b04a6df6d..074d76f702 100644 --- a/build/msw/wx_vc12_adv.vcxproj +++ b/build/msw/wx_vc12_adv.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_aui.vcxproj b/build/msw/wx_vc12_aui.vcxproj index 63821ed568..2f259f7209 100644 --- a/build/msw/wx_vc12_aui.vcxproj +++ b/build/msw/wx_vc12_aui.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_base.vcxproj b/build/msw/wx_vc12_base.vcxproj index 01b80d9965..85ab69ae7f 100644 --- a/build/msw/wx_vc12_base.vcxproj +++ b/build/msw/wx_vc12_base.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_core.vcxproj b/build/msw/wx_vc12_core.vcxproj index c482602953..5793f93d4a 100644 --- a/build/msw/wx_vc12_core.vcxproj +++ b/build/msw/wx_vc12_core.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_gl.vcxproj b/build/msw/wx_vc12_gl.vcxproj index fde600ac0a..777c0c73f2 100644 --- a/build/msw/wx_vc12_gl.vcxproj +++ b/build/msw/wx_vc12_gl.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_html.vcxproj b/build/msw/wx_vc12_html.vcxproj index 84d06745cf..a9c67450e8 100644 --- a/build/msw/wx_vc12_html.vcxproj +++ b/build/msw/wx_vc12_html.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_media.vcxproj b/build/msw/wx_vc12_media.vcxproj index fa7c4c249f..fedecdd933 100644 --- a/build/msw/wx_vc12_media.vcxproj +++ b/build/msw/wx_vc12_media.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_net.vcxproj b/build/msw/wx_vc12_net.vcxproj index 2c4c4e81a8..eb932390ab 100644 --- a/build/msw/wx_vc12_net.vcxproj +++ b/build/msw/wx_vc12_net.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_propgrid.vcxproj b/build/msw/wx_vc12_propgrid.vcxproj index b42fccf200..1c619b49ef 100644 --- a/build/msw/wx_vc12_propgrid.vcxproj +++ b/build/msw/wx_vc12_propgrid.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_qa.vcxproj b/build/msw/wx_vc12_qa.vcxproj index 110a180b82..c8c08f049f 100644 --- a/build/msw/wx_vc12_qa.vcxproj +++ b/build/msw/wx_vc12_qa.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_ribbon.vcxproj b/build/msw/wx_vc12_ribbon.vcxproj index bbf57990d6..821073b9ca 100644 --- a/build/msw/wx_vc12_ribbon.vcxproj +++ b/build/msw/wx_vc12_ribbon.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_richtext.vcxproj b/build/msw/wx_vc12_richtext.vcxproj index 765c5b58ba..1eddeaa520 100644 --- a/build/msw/wx_vc12_richtext.vcxproj +++ b/build/msw/wx_vc12_richtext.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_stc.vcxproj b/build/msw/wx_vc12_stc.vcxproj index 7d0b38ccc3..34e7f4b74a 100644 --- a/build/msw/wx_vc12_stc.vcxproj +++ b/build/msw/wx_vc12_stc.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_webview.vcxproj b/build/msw/wx_vc12_webview.vcxproj index b0ea7b8c74..d0c1a8ef42 100644 --- a/build/msw/wx_vc12_webview.vcxproj +++ b/build/msw/wx_vc12_webview.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_wxexpat.vcxproj b/build/msw/wx_vc12_wxexpat.vcxproj index c69910c54c..993eba1c78 100644 --- a/build/msw/wx_vc12_wxexpat.vcxproj +++ b/build/msw/wx_vc12_wxexpat.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_wxjpeg.vcxproj b/build/msw/wx_vc12_wxjpeg.vcxproj index 9d44e07692..102d0e28db 100644 --- a/build/msw/wx_vc12_wxjpeg.vcxproj +++ b/build/msw/wx_vc12_wxjpeg.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_wxpng.vcxproj b/build/msw/wx_vc12_wxpng.vcxproj index 22061c646f..e0739e468d 100644 --- a/build/msw/wx_vc12_wxpng.vcxproj +++ b/build/msw/wx_vc12_wxpng.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_wxregex.vcxproj b/build/msw/wx_vc12_wxregex.vcxproj index cf84075f0a..34005ae954 100644 --- a/build/msw/wx_vc12_wxregex.vcxproj +++ b/build/msw/wx_vc12_wxregex.vcxproj @@ -267,7 +267,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -405,7 +405,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_wxscintilla.vcxproj b/build/msw/wx_vc12_wxscintilla.vcxproj index 756c83f473..79457f7956 100644 --- a/build/msw/wx_vc12_wxscintilla.vcxproj +++ b/build/msw/wx_vc12_wxscintilla.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_wxtiff.vcxproj b/build/msw/wx_vc12_wxtiff.vcxproj index eeb8e3f455..f71ba80b5b 100644 --- a/build/msw/wx_vc12_wxtiff.vcxproj +++ b/build/msw/wx_vc12_wxtiff.vcxproj @@ -275,7 +275,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -413,7 +413,7 @@ $(OutDir)$(TargetName).pdb Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_wxzlib.vcxproj b/build/msw/wx_vc12_wxzlib.vcxproj index 907ff7ac99..82a07c12d4 100644 --- a/build/msw/wx_vc12_wxzlib.vcxproj +++ b/build/msw/wx_vc12_wxzlib.vcxproj @@ -274,7 +274,7 @@ true Level3 true - None + ProgramDatabase AnySuitable true Speed @@ -412,7 +412,7 @@ true Level3 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_xml.vcxproj b/build/msw/wx_vc12_xml.vcxproj index ab43390c3d..91d1334c12 100644 --- a/build/msw/wx_vc12_xml.vcxproj +++ b/build/msw/wx_vc12_xml.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed diff --git a/build/msw/wx_vc12_xrc.vcxproj b/build/msw/wx_vc12_xrc.vcxproj index b4dd06f704..52844071db 100644 --- a/build/msw/wx_vc12_xrc.vcxproj +++ b/build/msw/wx_vc12_xrc.vcxproj @@ -285,7 +285,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed @@ -451,7 +451,7 @@ $(OutDir)$(TargetName).pdb Level4 true - None + ProgramDatabase AnySuitable true Speed