Fixed DebugFast wxAdv28 build to avoid wxOnAssert linking errors

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1457 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson
2008-12-09 14:07:51 +00:00
parent 3c63813971
commit 5c75ba6177
3 changed files with 50 additions and 8 deletions

View File

@ -9,6 +9,47 @@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// =======================================================
// A guide to all the setup.h versions
// -------------
/* The included setup files are:
include\msvc\wx\setup.h + This file
include\wx\msw\wince\setup.h - Not used in regular builds
lib\vc_lib\msw\wx\setup.h + Library configuration, Release and DebugFast builds
lib\vc_lib\mswd\wx\setup.h + Library configuration, Debug builds
lib\vc_dll\msw\wx\setup.h - Not used, dll version only
lib\vc_dll\mswd\wx\setup.h - Not used, dll version only
These are identical or almost identical and I'm not sure which one that applies
in case they are different:
include\wx\setup.h ?
include\wx\msw\setup.h ?
include\wx\univ\setup.h ?
include\wx\msw\setup0.h - The original univ file, not used
The configuration consistency check files:
include\wx\chkconf.h ?
include\wx\msw\chkconf.h ?
include\wx\univ\chkconf.h ?
include\wx\msw\wince\chkconf.h - Not used in regular builds
Issues:
The Debug build will break in CFrame::InitBitmaps() at the ConvertToImage() line
with a "assert "wxWidgets Debug Alert, bmp.Ok()" error message, the cause is unknown,
to me at least.
*/
// =============
// VC++ IDE predefines _DEBUG and _UNICODE for the new projects itself, but
// the other symbols (WXUSINGDLL, __WXUNIVERSAL__, ...) should be defined
// explicitly!