mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-30 02:59:22 -05:00
BUG: fix compiler id test on cygwin
Alex
This commit is contained in:
@@ -6,13 +6,13 @@
|
||||
MACRO(CMAKE_DETERMINE_COMPILER_ID lang flagvar src)
|
||||
# Store the compiler identification source file.
|
||||
SET(CMAKE_${lang}_COMPILER_ID_SRC "${src}")
|
||||
IF(CMAKE_HOST_WIN32 AND NOT CMAKE_HOST_CYGWIN)
|
||||
IF(CMAKE_HOST_WIN32 AND NOT CMAKE_HOST_UNIX)
|
||||
# This seems to escape spaces:
|
||||
#FILE(TO_NATIVE_PATH "${CMAKE_${lang}_COMPILER_ID_SRC}"
|
||||
# CMAKE_${lang}_COMPILER_ID_SRC)
|
||||
STRING(REGEX REPLACE "/" "\\\\" CMAKE_${lang}_COMPILER_ID_SRC
|
||||
"${CMAKE_${lang}_COMPILER_ID_SRC}")
|
||||
ENDIF(CMAKE_HOST_WIN32 AND NOT CMAKE_HOST_CYGWIN)
|
||||
ENDIF(CMAKE_HOST_WIN32 AND NOT CMAKE_HOST_UNIX)
|
||||
|
||||
# Make sure user-specified compiler flags are used.
|
||||
IF(CMAKE_${lang}_FLAGS)
|
||||
|
||||
Reference in New Issue
Block a user