From: Vadim Zeitlin Date: Fri, 19 Aug 2005 17:15:44 +0000 (+0000) Subject: link unicows.lib automatically (and in correct order) if wxUSE_UNICODE_MSLU==1 (this... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9eeab5fa9d0cc828af7405ab28b2ccd4eea7dfcb?ds=inline link unicows.lib automatically (and in correct order) if wxUSE_UNICODE_MSLU==1 (this is for the application and is mainly needed when using static wx libs) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35237 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/msvc/wx/setup.h b/include/msvc/wx/setup.h index ae44d58a90..6d14309c53 100644 --- a/include/msvc/wx/setup.h +++ b/include/msvc/wx/setup.h @@ -29,6 +29,26 @@ #endif #endif + // if we're using MSLU, ensure that the first library we use is + // unicows.lib + #if wxUSE_UNICODE_MSLU + // for this, first tell linker not to use the standard libraries + #pragma comment(linker, "/nod:kernel32.lib /nod:advapi32.lib /nod:user32.lib /nod:gdi32.lib /nod:shell32.lib /nod:comdlg32.lib /nod:version.lib /nod:mpr.lib /nod:rasapi32.lib /nod:winmm.lib /nod:winspool.lib /nod:vfw32.lib /nod:secur32.lib /nod:oleacc.lib /nod:oledlg.lib /nod:sensapi.lib") + + // then tell it to link with unicows.lib + #pragma comment(lib, "unicows.lib") + + // and only then readd all standard libraries back + #pragma comment(lib, "kernel32.lib") + #pragma comment(lib, "user32.lib") + #pragma comment(lib, "gdi32.lib") + #pragma comment(lib, "winspool.lib") + #pragma comment(lib, "comdlg32.lib") + #pragma comment(lib, "advapi32.lib") + #pragma comment(lib, "shell32.lib") + #pragma comment(lib, "oleacc.lib") + #endif // wxUSE_UNICODE_MSLU + #ifdef _DEBUG #if wxUSE_XML #pragma comment(lib,"wxexpatd")