added comment explaining the condition for compiling manifest into resources

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46316 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2007-06-04 09:01:37 +00:00
parent c73cff0535
commit a862159daa

View File

@ -98,6 +98,9 @@ wxBITMAP_STD_COLOURS BITMAP "wx/msw/colours.bmp"
// //
#if !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0) #if !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0)
// Visual Studio 2005 generates the manifest automatically and so we
// shouldn't include it in the resources manually:
#if !defined(WX_MSC_FULL_VER) || WX_MSC_FULL_VER < 140040130 #if !defined(WX_MSC_FULL_VER) || WX_MSC_FULL_VER < 140040130
// see "about isolated applications" topic in MSDN // see "about isolated applications" topic in MSDN
@ -116,4 +119,5 @@ wxMANIFEST_ID 24 "wx/msw/wx.manifest"
#endif #endif
#endif // !defined(WX_MSC_FULL_VER) || WX_MSC_FULL_VER < 140040130 #endif // !defined(WX_MSC_FULL_VER) || WX_MSC_FULL_VER < 140040130
#endif // !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0) #endif // !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0)