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 GitHub
parent 986e8eed00
commit 99802d8ff7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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