diff options
| author | Paul T <DeveloperPaul123@users.noreply.github.com> | 2018-04-28 10:34:57 -0400 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-04-28 07:34:57 -0700 |
| commit | ed3f943259acd4913f99891a709c8d6713f18397 (patch) | |
| tree | 12872f697468693455db49958c6bde0847c39b14 | |
| parent | 38d139ceb8bca5b8bb91eddf25180e0433f40115 (diff) | |
| download | vcpkg-ed3f943259acd4913f99891a709c8d6713f18397.tar.gz vcpkg-ed3f943259acd4913f99891a709c8d6713f18397.zip | |
Add Visual Studio 2013 Support for Qt5 (#3361)
Add case for toolset v120 which corresponds to visual studio 2013.
| -rw-r--r-- | ports/qt5-base/portfile.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ports/qt5-base/portfile.cmake b/ports/qt5-base/portfile.cmake index e5bdba8a5..569540213 100644 --- a/ports/qt5-base/portfile.cmake +++ b/ports/qt5-base/portfile.cmake @@ -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} |
