]>
git.saurik.com Git - wxWidgets.git/blob - include/msvc/wx/setup.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msvc/wx/msw/setup.h
3 // Purpose: wrapper around the real wx/setup.h for Visual C++
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // VC++ IDE predefines _DEBUG and _UNICODE for the new projects itself, but
13 // the other symbols (WXUSINGDLL, __WXUNIVERSAL__, ...) should be defined
17 #include "wx/version.h"
20 // notice that wxSUFFIX_DEBUG is a string but wxSUFFIX itself must be an
21 // identifier as string concatenation is not done inside #include where we
24 #define wxSUFFIX_DEBUG "d"
29 #endif // _UNICODE/!_UNICODE
31 #define wxSUFFIX_DEBUG ""
36 #endif // _UNICODE/!_UNICODE
40 #define wxLIB_SUBDIR vc_dll
42 #define wxLIB_SUBDIR vc_lib
46 // the real setup.h header file we need is in the build-specific directory,
47 // construct the path to it
48 #define wxSETUPH_PATH \
49 wxCONCAT5(../../../lib/, wxLIB_SUBDIR, /msw, wxSUFFIX, /wx/setup.h)
50 #define wxSETUPH_PATH_STR wxSTRINGIZE(wxSETUPH_PATH)
52 #include wxSETUPH_PATH_STR
55 // the library names depend on the build, these macro builds the correct
56 // library name for the given base name
57 #define wxSUFFIX_STR wxSTRINGIZE(wxSUFFIX)
58 #define wxSHORT_VERSION_STRING \
59 wxSTRINGIZE(wxMAJOR_VERSION) wxSTRINGIZE(wxMINOR_VERSION)
61 #define wxWX_LIB_NAME(name, subname) \
62 "wx" name wxSHORT_VERSION_STRING wxSUFFIX_STR subname
64 #define wxBASE_LIB_NAME(name) wxWX_LIB_NAME("base", "_" name)
65 #define wxMSW_LIB_NAME(name) wxWX_LIB_NAME("msw", "_" name)
67 // this one is for 3rd party libraries: they don't have the version number
68 // in their names and usually exist in ANSI version only (except for regex)
69 #define wx3RD_PARTY_LIB_NAME(name) "wx" name wxSUFFIX_DEBUG
71 // special version for regex as it does have a Unicode version
72 #define wx3RD_PARTY_LIB_NAME_U(name) "wx" name wxSUFFIX_STR
74 #pragma comment(lib, wxWX_LIB_NAME("base", ""))
77 #pragma comment(lib, wxBASE_LIB_NAME("net"))
80 #pragma comment(lib, wxBASE_LIB_NAME("xml"))
82 #if wxUSE_REGEX && !defined(wxNO_REGEX_LIB)
83 #pragma comment(lib, wx3RD_PARTY_LIB_NAME_U("regex"))
87 #if wxUSE_XML && !defined(wxNO_EXPAT_LIB)
88 #pragma comment(lib, wx3RD_PARTY_LIB_NAME("expat"))
90 #if wxUSE_LIBJPEG && !defined(wxNO_JPEG_LIB)
91 #pragma comment(lib, wx3RD_PARTY_LIB_NAME("jpeg"))
93 #if wxUSE_LIBPNG && !defined(wxNO_PNG_LIB)
94 #pragma comment(lib, wx3RD_PARTY_LIB_NAME("png"))
96 #if wxUSE_LIBTIFF && !defined(wxNO_TIFF_LIB)
97 #pragma comment(lib, wx3RD_PARTY_LIB_NAME("tiff"))
99 #if wxUSE_ZLIB && !defined(wxNO_ZLIB_LIB)
100 #pragma comment(lib, wx3RD_PARTY_LIB_NAME("zlib"))
103 #pragma comment(lib, wxMSW_LIB_NAME("core"))
106 #pragma comment(lib, wxMSW_LIB_NAME("adv"))
109 #ifndef wxNO_HTML_LIB
110 #pragma comment(lib, wxMSW_LIB_NAME("html"))
112 #if wxUSE_GLCANVAS && !defined(wxNO_GL_LIB)
113 #pragma comment(lib, wxMSW_LIB_NAME("gl"))
115 #if wxUSE_DEBUGREPORT && !defined(wxNO_QA_LIB)
116 #pragma comment(lib, wxMSW_LIB_NAME("qa"))
118 #if wxUSE_XRC && !defined(wxNO_XRC_LIB)
119 #pragma comment(lib, wxMSW_LIB_NAME("xrc"))
121 #if wxUSE_AUI && !defined(wxNO_AUI_LIB)
122 #pragma comment(lib, wxMSW_LIB_NAME("aui"))
124 #if wxUSE_RICHTEXT && !defined(wxNO_RICHTEXT_LIB)
125 #pragma comment(lib, wxMSW_LIB_NAME("richtext"))
127 #if wxUSE_MEDIACTRL && !defined(wxNO_MEDIA_LIB)
128 #pragma comment(lib, wxMSW_LIB_NAME("media"))
132 #error "This file should only be included when using Microsoft Visual C++"