From 92e3eb38e7cc662524b45f5b1998956d4081b6ab Mon Sep 17 00:00:00 2001 From: laikh Date: Thu, 23 Jan 2020 18:50:13 +0100 Subject: [PATCH] Fix bcrypt dependency for MINGW build --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c1c5a963f..5925051cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -160,7 +160,7 @@ if(WIN32) endif(MSVC) if(MINGW) - set(SYSTEM_LIBS ${SYSTEM_LIBS} ole32 oleaut32 ws2_32 mswsock dbghelp) + set(SYSTEM_LIBS ${SYSTEM_LIBS} ole32 oleaut32 ws2_32 mswsock dbghelp bcrypt) # Check for iconv (may be needed for Boost.Locale) include(CheckLibraryExists)