diff options
author | David Cole <david.cole@kitware.com> | 2011-12-16 15:15:44 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-12-16 15:15:44 (GMT) |
commit | f7be6d616f06c08e3b955df5ef2d8c4b18243334 (patch) | |
tree | 436cdd4be18e66af65d37360ab333ceb52b5aae9 /Modules | |
parent | ef086b5e41ac01e04fe1d7e416131b0d5939825f (diff) | |
parent | c213eb9cbf73c2d0ad723f1afb079508a731410f (diff) | |
download | CMake-f7be6d616f06c08e3b955df5ef2d8c4b18243334.zip CMake-f7be6d616f06c08e3b955df5ef2d8c4b18243334.tar.gz CMake-f7be6d616f06c08e3b955df5ef2d8c4b18243334.tar.bz2 |
Merge topic 'GNU-to-MS'
c213eb9 Windows-GNU: Remove extra quotes in GNUtoMS rule variable
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Platform/Windows-GNU.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Platform/Windows-GNU.cmake b/Modules/Platform/Windows-GNU.cmake index c255d6b..dd47692 100644 --- a/Modules/Platform/Windows-GNU.cmake +++ b/Modules/Platform/Windows-GNU.cmake @@ -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() |