From f84cfec62e6a10a68d9c33a90c719e6467e30aeb Mon Sep 17 00:00:00 2001 From: Dale Glass Date: Fri, 8 Dec 2023 14:15:19 -0800 Subject: [PATCH] Use response files on Ninja for long paths --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index bbd118496b..fa85f13c24 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,6 +15,9 @@ endif() # 3.14 is the minimum version that supports symlinks on Windows cmake_minimum_required(VERSION 3.14) +# This should allow using long paths on Windows +SET(CMAKE_NINJA_FORCE_RESPONSE_FILE 1 CACHE INTERNAL "") + # Passing of variables to vcpkg # # vcpkg runs cmake scripts in an isolated environment, see this for details: