From f5be842c2e59233a80230057d210ff7ee1d2713a Mon Sep 17 00:00:00 2001 From: John Ralls Date: Sun, 16 Dec 2018 16:31:06 -0800 Subject: [PATCH] boost needs bcrypt.lib for all versions of Windows. --- libgnucash/engine/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgnucash/engine/CMakeLists.txt b/libgnucash/engine/CMakeLists.txt index 2da9b0540f..d90d3eef38 100644 --- a/libgnucash/engine/CMakeLists.txt +++ b/libgnucash/engine/CMakeLists.txt @@ -231,7 +231,7 @@ add_library (gncmod-engine # Add dependency on swig-runtime.h and iso-4217-currencies.c add_dependencies (gncmod-engine swig-runtime-h iso-4217-c) -if (WIN32 AND ${CMAKE_HOST_SYSTEM_VERSION} VERSION_LESS "10.0") +if (WIN32) set(BCRYPT "bcrypt.lib") else() set(BCRYPT "")