Change CMake to do BCrypt detection.

This commit is contained in:
Nathan Moinvaziri 2023-04-19 10:35:10 -07:00
parent 65219949ff
commit a0b138e06c
3 changed files with 16 additions and 10 deletions

View File

@ -23,6 +23,7 @@ include(CheckLibraryExists)
include(CheckSymbolExists)
include(CheckFunctionExists)
include(CheckIncludeFile)
include(CheckIncludeFiles)
include(CheckTypeSize)
include(GNUInstallDirs)
include(FeatureSummary)
@ -434,7 +435,18 @@ if(WIN32)
if(MZ_OPENSSL)
list(APPEND MINIZIP_DEP_PKG OpenSSL)
else()
list(APPEND MINIZIP_SRC mz_crypt_winvista.c mz_crypt_winxp.c)
check_include_files("windows.h;bcrypt.h" BCRYPT_FOUND)
if (BCRYPT_FOUND)
message(STATUS "Using BCrypt")
list(APPEND MINIZIP_SRC mz_crypt_winvista.c)
list(APPEND MINIZIP_LIB bcrypt.lib ncrypt.lib)
else()
message(STATUS "Using CryptoAPI")
list(APPEND MINIZIP_SRC mz_crypt_winxp.c)
endif()
list(APPEND MINIZIP_LIB crypt32.lib)
endif()
else()
list(APPEND MINIZIP_DEF -DMZ_ZIP_NO_CRYPTO)

View File

@ -19,10 +19,6 @@
#endif
#if _WIN32_WINNT >= _WIN32_WINNT_VISTA
#pragma comment(lib, "bcrypt.lib")
#pragma comment(lib, "crypt32.lib")
#pragma comment(lib, "ncrypt.lib")
#include <bcrypt.h>
/***************************************************************************/

View File

@ -15,8 +15,6 @@
#include <windows.h>
#if _WIN32_WINNT <= _WIN32_WINNT_WINXP
#pragma comment(lib, "crypt32.lib")
#include <wincrypt.h>
/***************************************************************************/