mirror of https://github.com/PCSX2/pcsx2.git
292 lines
10 KiB
C
292 lines
10 KiB
C
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// Name: msvc/wx/msw/setup.h
|
||
|
// Purpose: wrapper around the real wx/setup.h for Visual C++
|
||
|
// Author: Vadim Zeitlin
|
||
|
// Modified by:
|
||
|
// Created: 2004-12-12
|
||
|
// RCS-ID: $Id: setup.h 43687 2006-11-27 15:03:59Z VZ $
|
||
|
// Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
|
||
|
// 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 msw file, not used
|
||
|
include\wx\univ\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!
|
||
|
|
||
|
#ifdef _MSC_VER
|
||
|
#ifdef _UNICODE
|
||
|
#ifdef WXUSINGDLL
|
||
|
#ifdef _DEBUG
|
||
|
#include "../../../lib/vc_dll/mswud/wx/setup.h"
|
||
|
#else
|
||
|
#include "../../../lib/vc_dll/mswu/wx/setup.h"
|
||
|
#endif
|
||
|
#else
|
||
|
#ifdef _DEBUG
|
||
|
#include "../../../lib/vc_lib/mswud/wx/setup.h"
|
||
|
#else
|
||
|
#include "../../../lib/vc_lib/mswu/wx/setup.h"
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
#pragma comment(lib,"wxbase28ud")
|
||
|
#pragma comment(lib,"wxbase28ud_net")
|
||
|
#pragma comment(lib,"wxbase28ud_xml")
|
||
|
#if wxUSE_REGEX
|
||
|
#pragma comment(lib,"wxregexud")
|
||
|
#endif
|
||
|
|
||
|
#if wxUSE_GUI
|
||
|
#if wxUSE_XML
|
||
|
#pragma comment(lib,"wxexpatd")
|
||
|
#endif
|
||
|
#if wxUSE_LIBJPEG
|
||
|
#pragma comment(lib,"wxjpegd")
|
||
|
#endif
|
||
|
#if wxUSE_LIBPNG
|
||
|
#pragma comment(lib,"wxpngd")
|
||
|
#endif
|
||
|
#if wxUSE_LIBTIFF
|
||
|
#pragma comment(lib,"wxtiffd")
|
||
|
#endif
|
||
|
#if wxUSE_ZLIB
|
||
|
#pragma comment(lib,"wxzlibd")
|
||
|
#endif
|
||
|
#pragma comment(lib,"wxmsw28ud_adv")
|
||
|
#pragma comment(lib,"wxmsw28ud_core")
|
||
|
#pragma comment(lib,"wxmsw28ud_html")
|
||
|
#if wxUSE_GLCANVAS
|
||
|
#pragma comment(lib,"wxmsw28ud_gl")
|
||
|
#endif
|
||
|
#if wxUSE_DEBUGREPORT
|
||
|
#pragma comment(lib,"wxmsw28ud_qa")
|
||
|
#endif
|
||
|
#if wxUSE_XRC
|
||
|
#pragma comment(lib,"wxmsw28ud_xrc")
|
||
|
#endif
|
||
|
#if wxUSE_AUI
|
||
|
#pragma comment(lib,"wxmsw28ud_aui")
|
||
|
#endif
|
||
|
#if wxUSE_RICHTEXT
|
||
|
#pragma comment(lib,"wxmsw28ud_richtext")
|
||
|
#endif
|
||
|
#if wxUSE_MEDIACTRL
|
||
|
#pragma comment(lib,"wxmsw28ud_media")
|
||
|
#endif
|
||
|
#if wxUSE_ODBC
|
||
|
#pragma comment(lib,"wxbase28ud_odbc")
|
||
|
#endif
|
||
|
#endif // wxUSE_GUI
|
||
|
#else // release
|
||
|
#pragma comment(lib,"wxbase28u")
|
||
|
#pragma comment(lib,"wxbase28u_net")
|
||
|
#pragma comment(lib,"wxbase28u_xml")
|
||
|
#if wxUSE_REGEX
|
||
|
#pragma comment(lib,"wxregexu")
|
||
|
#endif
|
||
|
|
||
|
#if wxUSE_GUI
|
||
|
#if wxUSE_XML
|
||
|
#pragma comment(lib,"wxexpat")
|
||
|
#endif
|
||
|
#if wxUSE_LIBJPEG
|
||
|
#pragma comment(lib,"wxjpeg")
|
||
|
#endif
|
||
|
#if wxUSE_LIBPNG
|
||
|
#pragma comment(lib,"wxpng")
|
||
|
#endif
|
||
|
#if wxUSE_LIBTIFF
|
||
|
#pragma comment(lib,"wxtiff")
|
||
|
#endif
|
||
|
#if wxUSE_ZLIB
|
||
|
#pragma comment(lib,"wxzlib")
|
||
|
#endif
|
||
|
#pragma comment(lib,"wxmsw28u_adv")
|
||
|
#pragma comment(lib,"wxmsw28u_core")
|
||
|
#pragma comment(lib,"wxmsw28u_html")
|
||
|
#if wxUSE_GLCANVAS
|
||
|
#pragma comment(lib,"wxmsw28u_gl")
|
||
|
#endif
|
||
|
#if wxUSE_DEBUGREPORT
|
||
|
#pragma comment(lib,"wxmsw28u_qa")
|
||
|
#endif
|
||
|
#if wxUSE_XRC
|
||
|
#pragma comment(lib,"wxmsw28u_xrc")
|
||
|
#endif
|
||
|
#if wxUSE_AUI
|
||
|
#pragma comment(lib,"wxmsw28u_aui")
|
||
|
#endif
|
||
|
#if wxUSE_RICHTEXT
|
||
|
#pragma comment(lib,"wxmsw28u_richtext")
|
||
|
#endif
|
||
|
#if wxUSE_MEDIACTRL
|
||
|
#pragma comment(lib,"wxmsw28u_media")
|
||
|
#endif
|
||
|
#if wxUSE_ODBC
|
||
|
#pragma comment(lib,"wxbase28u_odbc")
|
||
|
#endif
|
||
|
#endif // wxUSE_GUI
|
||
|
#endif // debug/release
|
||
|
#else // !_UNICODE
|
||
|
#ifdef WXUSINGDLL
|
||
|
#ifdef _DEBUG
|
||
|
#include "../../../lib/vc_dll/mswd/wx/setup.h"
|
||
|
#else
|
||
|
#include "../../../lib/vc_dll/msw/wx/setup.h"
|
||
|
#endif
|
||
|
#else // static lib
|
||
|
#ifdef _DEBUG
|
||
|
#include "../../../lib/vc_lib/mswd/wx/setup.h"
|
||
|
#else
|
||
|
#include "../../../lib/vc_lib/msw/wx/setup.h"
|
||
|
#endif
|
||
|
#endif // shared/static
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
#pragma comment(lib,"wxbase28d")
|
||
|
#pragma comment(lib,"wxbase28d_net")
|
||
|
#pragma comment(lib,"wxbase28d_xml")
|
||
|
#if wxUSE_REGEX
|
||
|
#pragma comment(lib,"wxregexd")
|
||
|
#endif
|
||
|
|
||
|
#if wxUSE_GUI
|
||
|
#if wxUSE_XML
|
||
|
#pragma comment(lib,"wxexpatd")
|
||
|
#endif
|
||
|
#if wxUSE_LIBJPEG
|
||
|
#pragma comment(lib,"wxjpegd")
|
||
|
#endif
|
||
|
#if wxUSE_LIBPNG
|
||
|
#pragma comment(lib,"wxpngd")
|
||
|
#endif
|
||
|
#if wxUSE_LIBTIFF
|
||
|
#pragma comment(lib,"wxtiffd")
|
||
|
#endif
|
||
|
#if wxUSE_ZLIB
|
||
|
#pragma comment(lib,"wxzlibd")
|
||
|
#endif
|
||
|
#pragma comment(lib,"wxmsw28d_adv")
|
||
|
#pragma comment(lib,"wxmsw28d_core")
|
||
|
#pragma comment(lib,"wxmsw28d_html")
|
||
|
#if wxUSE_GLCANVAS
|
||
|
#pragma comment(lib,"wxmsw28d_gl")
|
||
|
#endif
|
||
|
#if wxUSE_DEBUGREPORT
|
||
|
#pragma comment(lib,"wxmsw28d_qa")
|
||
|
#endif
|
||
|
#if wxUSE_XRC
|
||
|
#pragma comment(lib,"wxmsw28d_xrc")
|
||
|
#endif
|
||
|
#if wxUSE_AUI
|
||
|
#pragma comment(lib,"wxmsw28d_aui")
|
||
|
#endif
|
||
|
#if wxUSE_RICHTEXT
|
||
|
#pragma comment(lib,"wxmsw28d_richtext")
|
||
|
#endif
|
||
|
#if wxUSE_MEDIACTRL
|
||
|
#pragma comment(lib,"wxmsw28d_media")
|
||
|
#endif
|
||
|
#if wxUSE_ODBC
|
||
|
#pragma comment(lib,"wxbase28d_odbc")
|
||
|
#endif
|
||
|
#endif // wxUSE_GUI
|
||
|
#else // release
|
||
|
#pragma comment(lib,"wxbase28")
|
||
|
#pragma comment(lib,"wxbase28_net")
|
||
|
#pragma comment(lib,"wxbase28_xml")
|
||
|
#if wxUSE_REGEX
|
||
|
#pragma comment(lib,"wxregex")
|
||
|
#endif
|
||
|
|
||
|
#if wxUSE_GUI
|
||
|
#if wxUSE_XML
|
||
|
#pragma comment(lib,"wxexpat")
|
||
|
#endif
|
||
|
#if wxUSE_LIBJPEG
|
||
|
#pragma comment(lib,"wxjpeg")
|
||
|
#endif
|
||
|
#if wxUSE_LIBPNG
|
||
|
#pragma comment(lib,"wxpng")
|
||
|
#endif
|
||
|
#if wxUSE_LIBTIFF
|
||
|
#pragma comment(lib,"wxtiff")
|
||
|
#endif
|
||
|
#if wxUSE_ZLIB
|
||
|
#pragma comment(lib,"wxzlib")
|
||
|
#endif
|
||
|
#pragma comment(lib,"wxmsw28_adv")
|
||
|
#pragma comment(lib,"wxmsw28_core")
|
||
|
#pragma comment(lib,"wxmsw28_html")
|
||
|
#if wxUSE_GLCANVAS
|
||
|
#pragma comment(lib,"wxmsw28_gl")
|
||
|
#endif
|
||
|
#if wxUSE_DEBUGREPORT
|
||
|
#pragma comment(lib,"wxmsw28_qa")
|
||
|
#endif
|
||
|
#if wxUSE_XRC
|
||
|
#pragma comment(lib,"wxmsw28_xrc")
|
||
|
#endif
|
||
|
#if wxUSE_AUI
|
||
|
#pragma comment(lib,"wxmsw28_aui")
|
||
|
#endif
|
||
|
#if wxUSE_RICHTEXT
|
||
|
#pragma comment(lib,"wxmsw28_richtext")
|
||
|
#endif
|
||
|
#if wxUSE_MEDIACTRL
|
||
|
#pragma comment(lib,"wxmsw28_media")
|
||
|
#endif
|
||
|
#if wxUSE_ODBC
|
||
|
#pragma comment(lib,"wxbase28_odbc")
|
||
|
#endif
|
||
|
#endif // wxUSE_GUI
|
||
|
#endif // debug/release
|
||
|
#endif // _UNICODE/!_UNICODE
|
||
|
#else
|
||
|
#error "This file should only be included when using Microsoft Visual C++"
|
||
|
#endif
|
||
|
|