From ec7120134852c13bf72cec83da63e5fda415f371 Mon Sep 17 00:00:00 2001 From: Joel Teichroeb Date: Tue, 12 Jul 2016 20:52:04 -0700 Subject: [PATCH] Check CMake version for MinGW RC file handling --- CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 724aa939..a9e7f4e0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -104,8 +104,9 @@ else() message(STATUS "32-bit build") endif() -# CMake doesn't properly support resource compilation with MinGW. Boo! -if(MINGW) +# Versions of CMake before 2.8.7 do not properly support resource compilation +# with MinGW. Boo! +if(MINGW AND "${CMAKE_VERSION}" VERSION_LESS "2.8.7") if(NOT DEFINED RC) set(CMAKE_RC_COMPILER_INIT windres) else() -- 2.39.5