From fbd624bcf3255ad2defde4ebd5bc4c163bb8082b Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Wed, 16 Feb 2022 15:43:09 -0700 Subject: [PATCH] Remove Cygwin workaround This line was intended to silence a warning, however in the time since that code was added in 95828a85a, the minimum required CMake version was increased from 2.8.3 to 3.8. As of CMake 2.8.4 this warning is no longer emitted which means we can remove this line. --- CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cd63e47a2..a4da9d468 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,9 +16,6 @@ endmacro() # determine whether to create a debug or release build sfml_set_option(CMAKE_BUILD_TYPE Release STRING "Choose the type of build (Debug or Release)") -# Suppress Cygwin legacy warning -set(CMAKE_LEGACY_CYGWIN_WIN32 0) - # Suppress Mac OS X RPATH warnings and adopt new related behaviors cmake_policy(SET CMP0042 NEW) if (NOT CMAKE_VERSION VERSION_LESS 3.9)