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:
Biswapriyo Nath 2022-01-15 21:37:57 +05:30 committed by Andreas Schuh
parent b7fd838331
commit a738fdf933

View file

@ -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 "")