From ed654e2ece9c33d6c40f38024dbb4395e6ae5616 Mon Sep 17 00:00:00 2001 From: mahendrapardeshi Date: Thu, 2 Nov 2023 17:03:57 +0530 Subject: [PATCH] Update CMakeLists.txt The CMAKE_STATIC_LIBRARY_SUFFIX should be ".lib" instead of ".lib.a" --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ee6ea95..5818e47 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ if (NOT OpenSSL_FOUND) endif() if (MSVC OR MINGW) - set(CMAKE_STATIC_LIBRARY_SUFFIX ".lib.a") + set(CMAKE_STATIC_LIBRARY_SUFFIX ".lib") endif()