Add Visual Studio 2013 Support for Qt5 (#3361)

Add case for toolset v120 which corresponds to visual studio 2013.
This commit is contained in:
Paul T 2018-04-28 10:34:57 -04:00 committed by Robert Schumacher
parent 38d139ceb8
commit ed3f943259

View File

@ -69,6 +69,8 @@ if(NOT VCPKG_CMAKE_SYSTEM_NAME OR VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore
set(PLATFORM "win32-msvc2015")
elseif(VCPKG_PLATFORM_TOOLSET MATCHES "v141")
set(PLATFORM "win32-msvc2017")
elseif(VCPKG_PLATFORM_TOOLSET MATCHES "v120")
set(PLATFORM "win32-msvc2013")
endif()
configure_qt(
SOURCE_PATH ${SOURCE_PATH}