diff options
author | Brad King <brad.king@kitware.com> | 2015-02-18 14:37:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-02-18 14:40:25 (GMT) |
commit | a0f17fbe9cc8c8d30d8c1a4df50c4af5fc4e63d1 (patch) | |
tree | 89e2e18333095548356f57b9d585c207692d738a /Modules/Platform | |
parent | 4fb9e847c0c757ff6e1ee430bbb9fc2b6b4e2ae6 (diff) | |
download | CMake-a0f17fbe9cc8c8d30d8c1a4df50c4af5fc4e63d1.zip CMake-a0f17fbe9cc8c8d30d8c1a4df50c4af5fc4e63d1.tar.gz CMake-a0f17fbe9cc8c8d30d8c1a4df50c4af5fc4e63d1.tar.bz2 |
Windows-GNU: Do not tell find_library to treat '.dll' as linkable
Modern software distributions always use a separate ".dll.a" or ".lib"
import library for linking.
Diffstat (limited to 'Modules/Platform')
-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 ffc5657..a7653cf 100644 --- a/Modules/Platform/Windows-GNU.cmake +++ b/Modules/Platform/Windows-GNU.cmake @@ -35,7 +35,7 @@ endif() if(MINGW) set(CMAKE_FIND_LIBRARY_PREFIXES "lib" "") - set(CMAKE_FIND_LIBRARY_SUFFIXES ".dll" ".dll.a" ".a" ".lib") + set(CMAKE_FIND_LIBRARY_SUFFIXES ".dll.a" ".a" ".lib") set(CMAKE_C_STANDARD_LIBRARIES_INIT "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32") set(CMAKE_CXX_STANDARD_LIBRARIES_INIT "${CMAKE_C_STANDARD_LIBRARIES_INIT}") endif() |