From 2d1e0a51327ef96d075c2c41a3126f3ee262e765 Mon Sep 17 00:00:00 2001 From: Rix Tox Date: Mon, 30 Mar 2020 17:25:54 -0700 Subject: [PATCH] Fix mis-reference to SYMSRV_GLOB (#2291) Fixes a missing $ for a variable reference for setting up the symsrv search paths. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 23ab13fd4..4db35c98d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -624,7 +624,7 @@ if (WIN32) set(SYMSRV_GLOB "" CACHE STRING "Preferred path for dbghelp.dll with wildcard expansion") set(symsrv_paths - "{SYMSRV_GLOB}" + "${SYMSRV_GLOB}" "${PROGFILES32}/Windows Kits/*/Debuggers/${ARCH_SFX}/symsrv.dll" # In case if SDK is not installed and we have Visual Studio, symsrv.dll may be found in the # same place as dbghelp.dll (see comment for dbghelp.dll) (xref i#1956).