From d802b681a730c5e98ed324fed2f20ccf4042e3a8 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 15 May 2023 16:50:39 +0200 Subject: [PATCH] Set cmake policy CMP0091 before project Contributes to CURA-10475 --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index becce774..32d537df 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,4 @@ +cmake_policy(SET CMP0091 NEW) project(libarcus) cmake_minimum_required(VERSION 3.23) find_package(standardprojectsettings REQUIRED)