From 67a3f4dc953cd9c2703e3dbcb752d68ba43731f6 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Mon, 23 May 2022 21:14:42 +0200 Subject: [PATCH] build: Remove now superfluous cmake policy setting CMP0091 defaults to NEW with cmake_minimum_required 3.15 and later. --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aef9de4df..c7d31bb56 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,5 @@ cmake_minimum_required(VERSION 3.15) -cmake_policy(SET CMP0091 NEW) # Needed by CMAKE_MSVC_RUNTIME_LIBRARY - project(ccache LANGUAGES C CXX ASM ASM_MASM) if(MSVC) enable_language(ASM_MASM) -- 2.47.2