From 631aa9318316d6e46dc29c22cac243d6b4dfbf0e Mon Sep 17 00:00:00 2001 From: Juan Ramos Date: Fri, 28 Oct 2022 21:09:20 -0600 Subject: [PATCH] Remove CMP0054 Because the cmake minimum for GLFW is 3.4 setting the policy to new is a no-op --- CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b9ef7688..5dfaf2a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,10 +4,6 @@ project(GLFW VERSION 3.4.0 LANGUAGES C) set(CMAKE_LEGACY_CYGWIN_WIN32 OFF) -if (POLICY CMP0054) - cmake_policy(SET CMP0054 NEW) -endif() - if (POLICY CMP0069) cmake_policy(SET CMP0069 NEW) endif()