From: Joel Rosdahl Date: Mon, 23 May 2022 19:14:42 +0000 (+0200) Subject: build: Remove now superfluous cmake policy setting X-Git-Tag: v4.7~223 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=67a3f4dc953cd9c2703e3dbcb752d68ba43731f6;p=thirdparty%2Fccache.git build: Remove now superfluous cmake policy setting CMP0091 defaults to NEW with cmake_minimum_required 3.15 and later. --- 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)