Use a different manifest for each of x86, amd64 and ia64

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35909 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell 2005-10-16 20:28:24 +00:00
parent e40b74ba83
commit e396018def

View File

@ -91,9 +91,14 @@ wxBITMAP_STD_COLOURS BITMAP "wx/msw/colours.bmp"
// Manifest file for Windows XP
//
#if !defined(__WIN64__)
#if !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0)
#if WX_CPU_AMD64
1 24 "wx/msw/amd64.manifest"
#elif WX_CPU_IA64
1 24 "wx/msw/ia64.manifest"
#elif !defined(__WIN64__)
1 24 "wx/msw/wx.manifest"
#endif
#endif
#endif // !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0)