From d9f0a8dade520c431490d688d4b1f57c30feb560 Mon Sep 17 00:00:00 2001 From: olszomal Date: Wed, 10 Apr 2024 14:54:16 +0200 Subject: [PATCH] Fixed missing Crypt32.lib when linking openssl statically --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 41806d1..37d2537 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,7 +83,7 @@ target_link_libraries(osslsigncode PRIVATE ${ZLIB_LIBRARIES}) if(NOT UNIX) # https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-shutdown -target_link_libraries(osslsigncode PRIVATE Ws2_32.lib) +target_link_libraries(osslsigncode PRIVATE Ws2_32.lib crypt32.lib) endif(NOT UNIX) # add paths to linker search and installed rpath