From: Vadim Zeitlin Date: Sat, 25 Jul 2009 22:26:06 +0000 (+0000) Subject: Add support for stc library. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ad733205558ee4f29276f79d7ab578104cec4a9b Add support for stc library. Closes #11025. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61531 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/msvc/wx/setup.h b/include/msvc/wx/setup.h index 3dfe0eea0a..0f0206dd6e 100644 --- a/include/msvc/wx/setup.h +++ b/include/msvc/wx/setup.h @@ -130,6 +130,10 @@ #if wxUSE_MEDIACTRL && !defined(wxNO_MEDIA_LIB) #pragma comment(lib, wxMSW_LIB_NAME("media")) #endif + #if wxUSE_STC && !defined(wxNO_STC_LIB) + #pragma comment(lib, wxMSW_LIB_NAME("stc")) + #pragma comment(lib, wx3RD_PARTY_LIB_NAME("scintilla")) + #endif #endif // wxUSE_GUI #else #error "This file should only be included when using Microsoft Visual C++"