From cec02a773f7a1e24bee6c442dd36b0d58f44ddf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Tue, 13 Feb 2024 18:21:06 +0000 Subject: [PATCH] Consistently use lowercase for Windows libraries (#603) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cd12fa725..3f763bec2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -95,7 +95,7 @@ if (WIN32) #platform libs come from aws-c-common transitively, so we don't specify them here, but for documentation purposes, #Kernel32 and wsock2 are pulled in automatically. Here we add the lib containing the schannel API. #Also note, you don't get a choice on TLS implementation for Windows. - set(PLATFORM_LIBS Secur32 Crypt32) + set(PLATFORM_LIBS secur32 crypt32) elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" OR CMAKE_SYSTEM_NAME STREQUAL "Android") option(USE_VSOCK "Build in support for VSOCK sockets"