From 6a7fdaa4ce5a8f2a5f59d457015ea23f8f4affee Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Thu, 13 Feb 2025 17:47:42 +0100 Subject: [PATCH] ugh, MSYS is defined in all cases --- cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 03b0e73..9821099 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -15,7 +15,7 @@ if(NOT CMAKE_CROSSCOMPILING) message(FATAL_ERROR "broken") endif() else() - if(NOT MINGW OR NOT WIN32 OR MSYS OR CYGWIN) + if(NOT MINGW OR NOT WIN32 OR CYGWIN) message(FATAL_ERROR "broken") endif() endif()