From be34ec2009654bc242b042c788496e543e981ca9 Mon Sep 17 00:00:00 2001 From: Jacob Oursland Date: Tue, 8 Apr 2025 13:24:58 -0700 Subject: [PATCH] CMake: Add CMAKE_POLICY_VERSION_MINIMUM=3.5 to CMakePresets.json --- CMakePresets.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakePresets.json b/CMakePresets.json index f5eadf1063..02c14d4ddc 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -13,6 +13,10 @@ "CMAKE_EXPORT_COMPILE_COMMANDS": { "type": "BOOL", "value": "ON" + }, + "CMAKE_POLICY_VERSION_MINIMUM": { + "type": "STRING", + "value": "3.5" } } },