mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Change CMake to do BCrypt detection.
This commit is contained in:
parent
65219949ff
commit
a0b138e06c
@ -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)
|
||||
|
@ -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>
|
||||
|
||||
/***************************************************************************/
|
||||
|
@ -15,8 +15,6 @@
|
||||
#include <windows.h>
|
||||
|
||||
#if _WIN32_WINNT <= _WIN32_WINNT_WINXP
|
||||
#pragma comment(lib, "crypt32.lib")
|
||||
|
||||
#include <wincrypt.h>
|
||||
|
||||
/***************************************************************************/
|
||||
|
Loading…
x
Reference in New Issue
Block a user