mirror of
https://github.com/gflags/gflags.git
synced 2025-04-04 13:05:03 +00:00
cmake: Do not add suffix with static library names in mingw
In mingw environment, this fixes static linking using pkgconfig file.
This commit is contained in:
parent
b7fd838331
commit
a738fdf933
1 changed files with 2 additions and 2 deletions
|
@ -451,8 +451,8 @@ foreach (TYPE IN ITEMS STATIC SHARED)
|
|||
else ()
|
||||
set (GFLAGS_IS_A_DLL 0)
|
||||
endif ()
|
||||
# filename suffix for static libraries on Windows
|
||||
if (OS_WINDOWS AND "^${TYPE}$" STREQUAL "^STATIC$")
|
||||
# filename suffix for static libraries on Windows for MSVC toolchain only
|
||||
if (OS_WINDOWS AND NOT MINGW AND "^${TYPE}$" STREQUAL "^STATIC$")
|
||||
set (type_suffix "_${type}")
|
||||
else ()
|
||||
set (type_suffix "")
|
||||
|
|
Loading…
Add table
Reference in a new issue