[UPDATE] (AUTHOR Chris Covier) Make Scintilla project compilable under VS2013.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1199 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
parent
91c8310be3
commit
545f4f943f
@ -117,6 +117,16 @@ IF NOT [%MSVCTOOLSET%]==[] (
|
|||||||
GOTO TOOLSETKNOWN
|
GOTO TOOLSETKNOWN
|
||||||
)
|
)
|
||||||
|
|
||||||
|
:: VS2013
|
||||||
|
IF EXIST %BOOSTPATH%\bin.v2\libs\regex\build\msvc-12.0\release\link-static\runtime-link-static\threading-multi\libboost_regex-vc120-mt-s-%BOOSTVERSION%.lib (
|
||||||
|
SET MSVCTOOLSET=msvc-12.0
|
||||||
|
)
|
||||||
|
|
||||||
|
:: VS2012
|
||||||
|
IF EXIST %BOOSTPATH%\bin.v2\libs\regex\build\msvc-11.0\release\link-static\runtime-link-static\threading-multi\libboost_regex-vc110-mt-s-%BOOSTVERSION%.lib (
|
||||||
|
SET MSVCTOOLSET=msvc-11.0
|
||||||
|
)
|
||||||
|
|
||||||
:: VS2010
|
:: VS2010
|
||||||
IF EXIST %BOOSTPATH%\bin.v2\libs\regex\build\msvc-10.0\release\link-static\runtime-link-static\threading-multi\libboost_regex-vc100-mt-s-%BOOSTVERSION%.lib (
|
IF EXIST %BOOSTPATH%\bin.v2\libs\regex\build\msvc-10.0\release\link-static\runtime-link-static\threading-multi\libboost_regex-vc100-mt-s-%BOOSTVERSION%.lib (
|
||||||
SET MSVCTOOLSET=msvc-10.0
|
SET MSVCTOOLSET=msvc-10.0
|
||||||
@ -146,6 +156,15 @@ ECHO Run buildboost.bat without parameters to see the usage.
|
|||||||
|
|
||||||
:TOOLSETKNOWN
|
:TOOLSETKNOWN
|
||||||
|
|
||||||
|
:: VS2013
|
||||||
|
IF [%MSVCTOOLSET%]==[msvc-12.0] (
|
||||||
|
SET BOOSTLIBPATH=%BOOSTPATH%\bin.v2\libs\regex\build\msvc-12.0
|
||||||
|
)
|
||||||
|
|
||||||
|
:: VS2012
|
||||||
|
IF [%MSVCTOOLSET%]==[msvc-11.0] (
|
||||||
|
SET BOOSTLIBPATH=%BOOSTPATH%\bin.v2\libs\regex\build\msvc-11.0
|
||||||
|
)
|
||||||
|
|
||||||
:: VS2010
|
:: VS2010
|
||||||
IF [%MSVCTOOLSET%]==[msvc-10.0] (
|
IF [%MSVCTOOLSET%]==[msvc-10.0] (
|
||||||
|
Loading…
Reference in New Issue
Block a user