Skip to content

Commit ca3634a

Browse files
committed
cmake: do not use space in compiler string definition, it is not compatible with the standalone MinGW for Windows
1 parent ad87861 commit ca3634a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmake/DaemonCompiler.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ foreach(lang C;CXX)
225225
endif()
226226

227227
set(DAEMON_${lang}_COMPILER_STRING
228-
"${DAEMON_${lang}_COMPILER_NAME} ${DAEMON_${lang}_COMPILER_EXTENDED_VERSION} ${DAEMON_${lang}_COMPILER_BASENAME}")
228+
"${DAEMON_${lang}_COMPILER_NAME}_${DAEMON_${lang}_COMPILER_EXTENDED_VERSION}:${DAEMON_${lang}_COMPILER_BASENAME}")
229229

230230
message(STATUS "Detected ${${lang}_NAME} compiler: ${DAEMON_${lang}_COMPILER_STRING}")
231231

0 commit comments

Comments
 (0)