From 5823fde31b7185403f6fe4f24c1a858d63bfa2d3 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 13 Feb 2013 19:34:27 +0000 Subject: - boost updated to 1.53, and should be placed into ..\..\boost folder - various compilation fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@3591 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/BasicHistory/res/BasicHistory.rc | 5 +---- plugins/Clist_modern/src/modern_clui.cpp | 4 ++-- plugins/Clist_modern/src/modern_cluiservices.cpp | 2 +- plugins/Clist_mw/src/clui.cpp | 2 +- plugins/Clist_nicer/src/clui.cpp | 2 +- plugins/CrashDumper/src/exhndlr.cpp | 2 +- plugins/New_GPG/new_gpg_10.vcxproj | 16 ++++++++-------- plugins/New_GPG/new_gpg_11.vcxproj | 16 ++++++++-------- plugins/Quotes/Forex_10.vcxproj | 16 ++++++++-------- plugins/Quotes/Forex_11.vcxproj | 16 ++++++++-------- plugins/Sessions/Src/Main.cpp | 2 +- plugins/Sessions/Src/Options.cpp | 2 +- plugins/StopSpamMod/stopspam_mod_10.vcxproj | 16 ++++++++-------- plugins/StopSpamMod/stopspam_mod_11.vcxproj | 16 ++++++++-------- 14 files changed, 57 insertions(+), 60 deletions(-) (limited to 'plugins') diff --git a/plugins/BasicHistory/res/BasicHistory.rc b/plugins/BasicHistory/res/BasicHistory.rc index 6da741a059..d0874095cc 100644 --- a/plugins/BasicHistory/res/BasicHistory.rc +++ b/plugins/BasicHistory/res/BasicHistory.rc @@ -11,10 +11,8 @@ #undef APSTUDIO_READONLY_SYMBOLS #include -#include -#include #include -#include +#include #include ///////////////////////////////////////////////////////////////////////////// @@ -262,4 +260,3 @@ IDI_MINUSEX ICON "mnode.ico" #endif // Neutral resources ///////////////////////////////////////////////////////////////////////////// - diff --git a/plugins/Clist_modern/src/modern_clui.cpp b/plugins/Clist_modern/src/modern_clui.cpp index 96ecc8b1e4..3fd7ed5423 100644 --- a/plugins/Clist_modern/src/modern_clui.cpp +++ b/plugins/Clist_modern/src/modern_clui.cpp @@ -106,7 +106,7 @@ int CLUI::OnEvent_ContactMenuPreBuild(WPARAM wParam, LPARAM lParam) CLISTMENUITEM mi = { sizeof(mi) }; mi.flags = CMIM_FLAGS; GetClassName(hwndClist,cls,SIZEOF(cls)); - hwndClist = (!lstrcmp(CLISTCONTROL_CLASS,cls))?hwndClist:pcli->hwndContactList; + hwndClist = (!lstrcmp( _T(CLISTCONTROL_CLASS), cls))?hwndClist:pcli->hwndContactList; hItem = (HANDLE)SendMessage(hwndClist,CLM_GETSELECTION, 0, 0); if ( !hItem) mi.flags = CMIM_FLAGS | CMIF_HIDDEN; @@ -307,7 +307,7 @@ HRESULT CLUI::RegisterAvatarMenu() HRESULT CLUI::CreateCLCWindow(const HWND hwndClui) { - ClcWnd() = CreateWindow(CLISTCONTROL_CLASS,_T(""), + ClcWnd() = CreateWindow( _T(CLISTCONTROL_CLASS),_T(""), WS_CHILD|WS_CLIPCHILDREN|CLS_CONTACTLIST |( db_get_b(NULL,"CList","UseGroups",SETTING_USEGROUPS_DEFAULT)?CLS_USEGROUPS:0) |( db_get_b(NULL,"CList","HideOffline",SETTING_HIDEOFFLINE_DEFAULT)?CLS_HIDEOFFLINE:0) diff --git a/plugins/Clist_modern/src/modern_cluiservices.cpp b/plugins/Clist_modern/src/modern_cluiservices.cpp index e3eb5652ca..2e431396c8 100644 --- a/plugins/Clist_modern/src/modern_cluiservices.cpp +++ b/plugins/Clist_modern/src/modern_cluiservices.cpp @@ -77,7 +77,7 @@ static INT_PTR GroupAdded(WPARAM wParam, LPARAM lParam) HWND hwndFocus = GetFocus(); GetClassName(hwndFocus, szFocusClass, SIZEOF(szFocusClass)); - if ( !lstrcmp(szFocusClass, CLISTCONTROL_CLASS)) { + if ( !lstrcmp(szFocusClass, _T(CLISTCONTROL_CLASS))) { hItem = (HANDLE) SendMessage(hwndFocus, CLM_FINDGROUP, wParam, 0); if (hItem) SendMessage(hwndFocus, CLM_EDITLABEL, (WPARAM) hItem, 0); diff --git a/plugins/Clist_mw/src/clui.cpp b/plugins/Clist_mw/src/clui.cpp index 67862d2a79..f30e910dd3 100644 --- a/plugins/Clist_mw/src/clui.cpp +++ b/plugins/Clist_mw/src/clui.cpp @@ -367,7 +367,7 @@ int OnSettingChanging(WPARAM wParam,LPARAM lParam) HWND PreCreateCLC(HWND parent) { - pcli->hwndContactTree = CreateWindow(CLISTCONTROL_CLASS,_T(""), + pcli->hwndContactTree = CreateWindow( _T(CLISTCONTROL_CLASS),_T(""), WS_CHILD|WS_CLIPCHILDREN|CLS_CONTACTLIST |( db_get_b(NULL,"CList","UseGroups",SETTING_USEGROUPS_DEFAULT)?CLS_USEGROUPS:0) | CLS_HIDEOFFLINE diff --git a/plugins/Clist_nicer/src/clui.cpp b/plugins/Clist_nicer/src/clui.cpp index d9639080cf..5da598e932 100644 --- a/plugins/Clist_nicer/src/clui.cpp +++ b/plugins/Clist_nicer/src/clui.cpp @@ -179,7 +179,7 @@ static int FS_FontsChanged(WPARAM wParam, LPARAM lParam) static HWND PreCreateCLC(HWND parent) { - pcli->hwndContactTree = CreateWindow(CLISTCONTROL_CLASS, _T(""), + pcli->hwndContactTree = CreateWindow( _T(CLISTCONTROL_CLASS), _T(""), WS_CHILD | CLS_CONTACTLIST | (cfg::getByte(NULL, "CList", "UseGroups", SETTING_USEGROUPS_DEFAULT) ? CLS_USEGROUPS : 0) | CLS_HIDEOFFLINE diff --git a/plugins/CrashDumper/src/exhndlr.cpp b/plugins/CrashDumper/src/exhndlr.cpp index 441df2056f..2b3b56301f 100644 --- a/plugins/CrashDumper/src/exhndlr.cpp +++ b/plugins/CrashDumper/src/exhndlr.cpp @@ -41,7 +41,7 @@ void UnloadDbgHlp(void) int myDebugFilter(unsigned int code, PEXCEPTION_POINTERS ep) { if (code == VcppException(ERROR_SEVERITY_ERROR, ERROR_MOD_NOT_FOUND) || - code == VcppException(ERROR_SEVERITY_ERROR, ERROR_PROC_NOT_FOUND)) + code == VcppException(ERROR_SEVERITY_ERROR, ERROR_PROC_NOT_FOUND)) { PDelayLoadInfo dlld = (PDelayLoadInfo)ep->ExceptionRecord->ExceptionInformation[0]; diff --git a/plugins/New_GPG/new_gpg_10.vcxproj b/plugins/New_GPG/new_gpg_10.vcxproj index a437bbe66a..9f25e9a073 100755 --- a/plugins/New_GPG/new_gpg_10.vcxproj +++ b/plugins/New_GPG/new_gpg_10.vcxproj @@ -304,7 +304,7 @@ Size true true - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -323,7 +323,7 @@ shlwapi.lib;%(AdditionalDependencies) true - $(ProfileDir)..\..\bin10\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin10\lib;..\..\..\boost\stage\lib true true true @@ -355,7 +355,7 @@ Size true true - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN64;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -374,7 +374,7 @@ shlwapi.lib;%(AdditionalDependencies) true - $(ProfileDir)..\..\bin10\lib;..\..\..\boost_1_49_0\lib64 + $(ProfileDir)..\..\bin10\lib;..\..\..\boost\lib64 true true true @@ -445,7 +445,7 @@ Disabled - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;_USRDLL;TESTPLUG_EXPORTS;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL @@ -466,7 +466,7 @@ shlwapi.lib;%(AdditionalDependencies) true - $(ProfileDir)..\..\bin10\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin10\lib;..\..\..\boost\stage\lib true false @@ -491,7 +491,7 @@ Disabled - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN64;_DEBUG;_WINDOWS;_USRDLL;TESTPLUG_EXPORTS;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL @@ -512,7 +512,7 @@ shlwapi.lib;%(AdditionalDependencies) true - $(ProfileDir)..\..\bin10\lib;..\..\..\boost_1_49_0\lib64 + $(ProfileDir)..\..\bin10\lib;..\..\..\boost\lib64 true false diff --git a/plugins/New_GPG/new_gpg_11.vcxproj b/plugins/New_GPG/new_gpg_11.vcxproj index c97aaaa37e..6e7fbb977e 100644 --- a/plugins/New_GPG/new_gpg_11.vcxproj +++ b/plugins/New_GPG/new_gpg_11.vcxproj @@ -308,7 +308,7 @@ Size true true - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -327,7 +327,7 @@ shlwapi.lib;%(AdditionalDependencies) true - $(ProfileDir)..\..\bin11\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin11\lib;..\..\..\boost\stage\lib true true true @@ -359,7 +359,7 @@ Size true true - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN64;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -378,7 +378,7 @@ shlwapi.lib;%(AdditionalDependencies) true - $(ProfileDir)..\..\bin11\lib;..\..\..\boost_1_49_0\lib64 + $(ProfileDir)..\..\bin11\lib;..\..\..\boost\lib64 true true true @@ -449,7 +449,7 @@ Disabled - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;_USRDLL;TESTPLUG_EXPORTS;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL @@ -470,7 +470,7 @@ shlwapi.lib;%(AdditionalDependencies) true - $(ProfileDir)..\..\bin11\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin11\lib;..\..\..\boost\stage\lib true false @@ -495,7 +495,7 @@ Disabled - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN64;_DEBUG;_WINDOWS;_USRDLL;TESTPLUG_EXPORTS;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL @@ -516,7 +516,7 @@ shlwapi.lib;%(AdditionalDependencies) true - $(ProfileDir)..\..\bin11\lib;..\..\..\boost_1_49_0\lib64 + $(ProfileDir)..\..\bin11\lib;..\..\..\boost\lib64 true false diff --git a/plugins/Quotes/Forex_10.vcxproj b/plugins/Quotes/Forex_10.vcxproj index 3def2265f1..b534b58ac6 100644 --- a/plugins/Quotes/Forex_10.vcxproj +++ b/plugins/Quotes/Forex_10.vcxproj @@ -72,7 +72,7 @@ Disabled - ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost_1_49_0;%(AdditionalIncludeDirectories) + ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;_USRDLL;FOREX_EXPORTS;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL @@ -86,7 +86,7 @@ Windows $(IntDir)$(TargetName).lib false - $(ProfileDir)..\..\bin10\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin10\lib;..\..\..\boost\stage\lib ..\..\include\msapi @@ -96,7 +96,7 @@ Disabled - ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost_1_49_0;%(AdditionalIncludeDirectories) + ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost;%(AdditionalIncludeDirectories) WIN64;_DEBUG;_WINDOWS;_USRDLL;FOREX_EXPORTS;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL @@ -109,7 +109,7 @@ Windows $(IntDir)$(TargetName).lib false - $(ProfileDir)..\..\bin10\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin10\lib;..\..\..\boost\stage\lib ..\..\include\msapi @@ -120,7 +120,7 @@ Full Size - ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost_1_49_0;%(AdditionalIncludeDirectories) + ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;_USRDLL;FOREX_EXPORTS;%(PreprocessorDefinitions) true Use @@ -134,7 +134,7 @@ true $(IntDir)$(TargetName).lib false - $(ProfileDir)..\..\bin10\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin10\lib;..\..\..\boost\stage\lib /PDBALTPATH:%_PDB% @@ -146,7 +146,7 @@ Full Size - ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost_1_49_0;%(AdditionalIncludeDirectories) + ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost;%(AdditionalIncludeDirectories) WIN64;NDEBUG;_WINDOWS;_USRDLL;FOREX_EXPORTS;%(PreprocessorDefinitions) true Use @@ -160,7 +160,7 @@ true $(IntDir)$(TargetName).lib false - $(ProfileDir)..\..\bin10\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin10\lib;..\..\..\boost\stage\lib /PDBALTPATH:%_PDB% diff --git a/plugins/Quotes/Forex_11.vcxproj b/plugins/Quotes/Forex_11.vcxproj index b7ab30bf75..7b8105496c 100644 --- a/plugins/Quotes/Forex_11.vcxproj +++ b/plugins/Quotes/Forex_11.vcxproj @@ -76,7 +76,7 @@ Disabled - ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost_1_49_0;%(AdditionalIncludeDirectories) + ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;_USRDLL;FOREX_EXPORTS;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL @@ -90,7 +90,7 @@ Windows $(IntDir)$(TargetName).lib false - $(ProfileDir)..\..\bin11\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin11\lib;..\..\..\boost\stage\lib ..\..\include\msapi @@ -100,7 +100,7 @@ Disabled - ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost_1_49_0;%(AdditionalIncludeDirectories) + ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost;%(AdditionalIncludeDirectories) WIN64;_DEBUG;_WINDOWS;_USRDLL;FOREX_EXPORTS;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL @@ -113,7 +113,7 @@ Windows $(IntDir)$(TargetName).lib false - $(ProfileDir)..\..\bin11\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin11\lib;..\..\..\boost\stage\lib ..\..\include\msapi @@ -124,7 +124,7 @@ Full Size - ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost_1_49_0;%(AdditionalIncludeDirectories) + ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;_USRDLL;FOREX_EXPORTS;%(PreprocessorDefinitions) true Use @@ -138,7 +138,7 @@ true $(IntDir)$(TargetName).lib false - $(ProfileDir)..\..\bin11\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin11\lib;..\..\..\boost\stage\lib /PDBALTPATH:%_PDB% @@ -150,7 +150,7 @@ Full Size - ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost_1_49_0;%(AdditionalIncludeDirectories) + ..\..\include;..\..\plugins\ExternalAPI;..\..\..\boost;%(AdditionalIncludeDirectories) WIN64;NDEBUG;_WINDOWS;_USRDLL;FOREX_EXPORTS;%(PreprocessorDefinitions) true Use @@ -164,7 +164,7 @@ true $(IntDir)$(TargetName).lib false - $(ProfileDir)..\..\bin11\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin11\lib;..\..\..\boost\stage\lib /PDBALTPATH:%_PDB% diff --git a/plugins/Sessions/Src/Main.cpp b/plugins/Sessions/Src/Main.cpp index 5bb8e5d0bf..587dd12fb5 100644 --- a/plugins/Sessions/Src/Main.cpp +++ b/plugins/Sessions/Src/Main.cpp @@ -182,7 +182,7 @@ INT_PTR CALLBACK SaveSessionDlgProc(HWND hdlg,UINT msg,WPARAM wparam,LPARAM lpar dy=20; dx=150; dd=5; - hClistControl = CreateWindowEx(WS_EX_CLIENTEDGE,CLISTCONTROL_CLASS, _T(""), + hClistControl = CreateWindowEx(WS_EX_CLIENTEDGE, _T(CLISTCONTROL_CLASS), _T(""), WS_TABSTOP |WS_VISIBLE | WS_CHILD , x, y, dx, dy, hdlg, (HMENU)IDC_CLIST, hinstance, 0); diff --git a/plugins/Sessions/Src/Options.cpp b/plugins/Sessions/Src/Options.cpp index d5295453fb..756aeeee44 100644 --- a/plugins/Sessions/Src/Options.cpp +++ b/plugins/Sessions/Src/Options.cpp @@ -375,7 +375,7 @@ INT_PTR CALLBACK OptionsProc(HWND hdlg,UINT msg,WPARAM wparam,LPARAM lparam) EnableWindow(GetDlgItem(hdlg,IDC_DEL),FALSE); //EnableWindow(GetDlgItem(hdlg,IDC_SAVE),TRUE); SetWindowText(GetDlgItem(hdlg,IDC_EDIT),TranslateT("View")); - hOpClistControl = CreateWindowEx(WS_EX_STATICEDGE,CLISTCONTROL_CLASS, _T(""), + hOpClistControl = CreateWindowEx(WS_EX_STATICEDGE, _T(CLISTCONTROL_CLASS), _T(""), WS_TABSTOP |WS_VISIBLE | WS_CHILD , 14,198,161,163,hdlg, (HMENU)IDC_EMCLIST, hinstance, 0); diff --git a/plugins/StopSpamMod/stopspam_mod_10.vcxproj b/plugins/StopSpamMod/stopspam_mod_10.vcxproj index fa75ecb225..51e8c5cfcf 100644 --- a/plugins/StopSpamMod/stopspam_mod_10.vcxproj +++ b/plugins/StopSpamMod/stopspam_mod_10.vcxproj @@ -85,7 +85,7 @@ Disabled - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions);_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE true EnableFastChecks @@ -103,7 +103,7 @@ $(IntDir)$(TargetName).lib MachineX86 - $(ProfileDir)..\..\bin10\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin10\lib;..\..\..\boost\stage\lib ..\..\include\msapi @@ -116,7 +116,7 @@ Disabled - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN64;_DEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions);_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE EnableFastChecks MultiThreadedDebugDLL @@ -132,7 +132,7 @@ $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin10\lib;..\..\..\boost_1_49_0\lib64 + $(ProfileDir)..\..\bin10\lib;..\..\..\boost\lib64 ..\..\include\msapi @@ -146,7 +146,7 @@ Full OnlyExplicitInline - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions);_UNICODE;UNICODE true MultiThreadedDLL @@ -171,7 +171,7 @@ $(IntDir)$(TargetName).lib MachineX86 - $(ProfileDir)..\..\bin10\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin10\lib;..\..\..\boost\stage\lib /PDBALTPATH:%_PDB% @@ -190,7 +190,7 @@ Full OnlyExplicitInline - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN64;NDEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -214,7 +214,7 @@ $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin10\lib;..\..\..\boost_1_49_0\lib64 + $(ProfileDir)..\..\bin10\lib;..\..\..\boost\lib64 /PDBALTPATH:%_PDB% diff --git a/plugins/StopSpamMod/stopspam_mod_11.vcxproj b/plugins/StopSpamMod/stopspam_mod_11.vcxproj index f016d29aee..ca1e6516a5 100644 --- a/plugins/StopSpamMod/stopspam_mod_11.vcxproj +++ b/plugins/StopSpamMod/stopspam_mod_11.vcxproj @@ -89,7 +89,7 @@ Disabled - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN32;_DEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions);_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE true EnableFastChecks @@ -107,7 +107,7 @@ $(IntDir)$(TargetName).lib MachineX86 - $(ProfileDir)..\..\bin11\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin11\lib;..\..\..\boost\stage\lib ..\..\include\msapi @@ -120,7 +120,7 @@ Disabled - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN64;_DEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions);_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE EnableFastChecks MultiThreadedDebugDLL @@ -136,7 +136,7 @@ $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin11\lib;..\..\..\boost_1_49_0\lib64 + $(ProfileDir)..\..\bin11\lib;..\..\..\boost\lib64 ..\..\include\msapi @@ -150,7 +150,7 @@ Full OnlyExplicitInline - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN32;NDEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions);_UNICODE;UNICODE true MultiThreadedDLL @@ -175,7 +175,7 @@ $(IntDir)$(TargetName).lib MachineX86 - $(ProfileDir)..\..\bin11\lib;..\..\..\boost_1_49_0\lib + $(ProfileDir)..\..\bin11\lib;..\..\..\boost\stage\lib /PDBALTPATH:%_PDB% @@ -194,7 +194,7 @@ Full OnlyExplicitInline - .\src\include;..\..\..\boost_1_49_0;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) WIN64;NDEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -218,7 +218,7 @@ $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin11\lib;..\..\..\boost_1_49_0\lib64 + $(ProfileDir)..\..\bin11\lib;..\..\..\boost\lib64 /PDBALTPATH:%_PDB% -- cgit v1.2.3