From 7a2558d834f582c1a44d8106a312cec6ad0b25eb Mon Sep 17 00:00:00 2001 From: David Szabo Date: Sat, 19 May 2018 00:06:33 +0200 Subject: [PATCH] vs version number increased for appveyor build (#3251) --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a56f9486..9adc1ab3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -208,9 +208,9 @@ elseif(WIN32) # include vcredist into the package; NSIS will take care of running it IF(MSVC) if(CMAKE_SIZEOF_VOID_P EQUAL 8) - INSTALL(FILES "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/redist/MSVC/14.13.26020/vc_redist.x64.exe" DESTINATION ./) + INSTALL(FILES "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/redist/MSVC/14.14.26405/vc_redist.x64.exe" DESTINATION ./) else() - INSTALL(FILES "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/redist/MSVC/14.13.26020/vc_redist.x86.exe" DESTINATION ./) + INSTALL(FILES "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/redist/MSVC/14.14.26405/vc_redist.x86.exe" DESTINATION ./) endif() ENDIF() endif()