From 53eee270866a44df113d5a9dd17752838f3fdfe5 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 22 Jan 2016 14:26:20 -0800 Subject: [PATCH] use incredibly dumb win path to 64-bit dlls --- cmake/macros/ManuallyInstallMSVC.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/macros/ManuallyInstallMSVC.cmake b/cmake/macros/ManuallyInstallMSVC.cmake index 45e9362c91..ac899427a7 100644 --- a/cmake/macros/ManuallyInstallMSVC.cmake +++ b/cmake/macros/ManuallyInstallMSVC.cmake @@ -15,7 +15,7 @@ macro(manually_install_msvc) if (WIN32) # look for the msvcr DLLs required by this target - find_path(MSVC_DLL_PATH msvcr120.dll PATHS "C:/Windows/SysWOW64" NO_DEFAULT_PATH) + find_path(MSVC_DLL_PATH msvcr120.dll PATHS "C:/Windows/System32" NO_DEFAULT_PATH) if (MSVC_DLL_PATH-NOTFOUND) # we didn't get the path to the DLLs - on production or PR build this is a fail