Merge topic 'GNU-to-MS'

c213eb9 Windows-GNU: Remove extra quotes in GNUtoMS rule variable
This commit is contained in:
David Cole 2011-12-16 10:15:44 -05:00 committed by CMake Topic Stage
commit f7be6d616f
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ macro(__windows_compiler_gnu_abi lang)
if(CMAKE_GNUtoMS)
# Teach CMake how to create a MS import library at link time.
set(CMAKE_${lang}_GNUtoMS_RULE " -Wl,--output-def,<TARGET_NAME>.def"
"<CMAKE_COMMAND> -Dlib=\"${CMAKE_GNUtoMS_LIB}\" -Ddef=\"<TARGET_NAME>.def\" -Ddll=\"<TARGET>\" -Dimp=\"<TARGET_IMPLIB>\" -P \"${CMAKE_ROOT}/Modules/Platform/GNUtoMS_lib.cmake\""
"<CMAKE_COMMAND> -Dlib=\"${CMAKE_GNUtoMS_LIB}\" -Ddef=<TARGET_NAME>.def -Ddll=<TARGET> -Dimp=<TARGET_IMPLIB> -P \"${CMAKE_ROOT}/Modules/Platform/GNUtoMS_lib.cmake\""
)
endif()
endmacro()