From cf330de003168a0bb9892b93e6ca990f03433170 Mon Sep 17 00:00:00 2001 From: Denver Coneybeare Date: Wed, 18 Dec 2024 17:04:19 +0000 Subject: [PATCH] firestore/CMakeLists.txt: add dbghelp and bcrypt libraries to ADDITIONAL_LIBS on windows --- firestore/testapp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firestore/testapp/CMakeLists.txt b/firestore/testapp/CMakeLists.txt index a4dd2727..1a2c953f 100644 --- a/firestore/testapp/CMakeLists.txt +++ b/firestore/testapp/CMakeLists.txt @@ -106,7 +106,7 @@ else() "-framework SystemConfiguration" ) elseif(MSVC) - set(ADDITIONAL_LIBS advapi32 ws2_32 crypt32 iphlpapi psapi userenv) + set(ADDITIONAL_LIBS advapi32 ws2_32 crypt32 iphlpapi psapi userenv dbghelp bcrypt) else() set(ADDITIONAL_LIBS pthread) endif()