From 51d20e5db057a56b68844c36ed7117021e1436a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Gr=C3=A4nitz?= Date: Fri, 7 Feb 2025 15:14:29 +0100 Subject: [PATCH] [dev] Temporarily set CMake policy CMP0157 to OLD --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 265c9d3de7..89a46503ba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ endif() if(POLICY CMP0157) # New Swift build model: improved incremental build performance and LSP support - cmake_policy(SET CMP0157 NEW) + cmake_policy(SET CMP0157 OLD) endif() if (NOT DEFINED CMAKE_C_COMPILER)