From 5a243c1acf3067488da62311b00ceb0b9a528af1 Mon Sep 17 00:00:00 2001 From: Nir Azkiel Date: Mon, 27 May 2024 12:12:19 +0300 Subject: [PATCH] wrap json cmake path with quotes --- CMake/json-download.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/json-download.cmake.in b/CMake/json-download.cmake.in index 9f3d37ca0b..868cacf114 100644 --- a/CMake/json-download.cmake.in +++ b/CMake/json-download.cmake.in @@ -13,7 +13,7 @@ ExternalProject_Add( # Once we have a minimal version support of cmake 3.17, we can switch the command to rm -rF DOWNLOAD_COMMAND "${CMAKE_COMMAND}" -E remove_directory "${CMAKE_BINARY_DIR}/third-party/json" COMMAND git clone -c advice.detachedHead=false --branch v3.11.3 https://github.com/nlohmann/json.git --depth 1 json - DOWNLOAD_DIR ${CMAKE_BINARY_DIR}/third-party/ + DOWNLOAD_DIR "${CMAKE_BINARY_DIR}/third-party/" # Override default steps with no action, we just want the clone step. UPDATE_COMMAND ""