Cygwin: Use 'cyg' prefix for module DLLs (#10122)

Cygwin now uses the prefix 'cyg' for plugin DLLs instead of 'lib'.
This commit is contained in:
Yaakov Selkowitz 2010-10-06 08:41:32 -04:00 committed by Brad King
parent b90e9f9c3a
commit 1dcc9777a7
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ SET(CYGWIN 1)
SET(CMAKE_SHARED_LIBRARY_PREFIX "cyg")
SET(CMAKE_SHARED_LIBRARY_SUFFIX ".dll")
SET(CMAKE_SHARED_MODULE_PREFIX "lib")
SET(CMAKE_SHARED_MODULE_PREFIX "cyg")
SET(CMAKE_SHARED_MODULE_SUFFIX ".dll")
SET(CMAKE_IMPORT_LIBRARY_PREFIX "lib")
SET(CMAKE_IMPORT_LIBRARY_SUFFIX ".dll.a")