mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-28 17:33:09 +00:00
Merge pull request #3526 from sschuberth/cmake-number-compare
CMakeLists: Compare CMAKE_SIZEOF_VOID_P as a number, not as a string
This commit is contained in:
commit
a3dc4190e7
@ -235,7 +235,7 @@ IF (WIN32 AND WINHTTP)
|
||||
SET(LIBWINHTTP_PATH "${CMAKE_CURRENT_BINARY_DIR}/deps/winhttp")
|
||||
FILE(MAKE_DIRECTORY ${LIBWINHTTP_PATH})
|
||||
|
||||
IF ("${CMAKE_SIZEOF_VOID_P}" EQUAL "8")
|
||||
IF (CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||
set(WINHTTP_DEF "${CMAKE_CURRENT_SOURCE_DIR}/deps/winhttp/winhttp64.def")
|
||||
ELSE()
|
||||
set(WINHTTP_DEF "${CMAKE_CURRENT_SOURCE_DIR}/deps/winhttp/winhttp.def")
|
||||
|
Loading…
Reference in New Issue
Block a user