summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-03-24 12:25:43 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-03-24 12:25:43 (GMT)
commiteab35a39804e4ccac521057112f138d3e32efac9 (patch)
tree3d944127340f6f5a5db31587a054b33fc2f86505
parent7f8fbc326ba6a9f6bb643983ca12a31b40fa7c00 (diff)
downloadDoxygen-eab35a39804e4ccac521057112f138d3e32efac9.zip
Doxygen-eab35a39804e4ccac521057112f138d3e32efac9.tar.gz
Doxygen-eab35a39804e4ccac521057112f138d3e32efac9.tar.bz2
issue #7664 bigobj not found with MSYS Makefiles
MSYS compiles also with gcc and therefore should skip this code analogous to MinGW as well
-rw-r--r--CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a9545d0..20c87dc 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -62,7 +62,8 @@ if (CMAKE_SYSTEM MATCHES "Darwin")
endif()
if (WIN32)
- if (NOT CMAKE_GENERATOR MATCHES "MinGW Makefiles")
+ if ((NOT CMAKE_GENERATOR MATCHES "MinGW Makefiles") AND
+ (NOT CMAKE_GENERATOR MATCHES "MSYS Makefiles"))
if (NOT ICONV_DIR)
set(ICONV_DIR "${CMAKE_SOURCE_DIR}/winbuild")
endif()