Skip to content

Commit

Permalink
Fixed cmake cURL support
Browse files Browse the repository at this point in the history
  • Loading branch information
olszomal committed Apr 10, 2024
1 parent 2efedb6 commit 8d556b0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,16 @@ target_include_directories(osslsigncode PRIVATE ${OPENSSL_INCLUDE_DIR})
target_link_libraries(osslsigncode PRIVATE ${OPENSSL_LIBRARIES})

# set cURL includes/libraries
if(OPENSSL_VERSION VERSION_LESS "3.0.0" AND CURL_FOUND)
if(OPENSSL_VERSION VERSION_LESS "3.0.0")
if(CURL_FOUND)
target_compile_definitions(osslsigncode PRIVATE ENABLE_CURL=1)
target_include_directories(osslsigncode PRIVATE ${CURL_INCLUDE_DIRS})
target_link_libraries(osslsigncode PRIVATE ${CURL_LIBRARIES})
message(STATUS "cURL support enabled")
else(OPENSSL_VERSION VERSION_LESS "3.0.0" AND CURL_FOUND)
else(CURL_FOUND)
message(STATUS "cURL support disabled (library not found)")
endif(OPENSSL_VERSION VERSION_LESS "3.0.0" AND CURL_FOUND)
endif(CURL_FOUND)
endif(OPENSSL_VERSION VERSION_LESS "3.0.0")

if(NOT ZLIB_FOUND)
message(FATAL_ERROR "Zlib library not found")
Expand Down

0 comments on commit 8d556b0

Please sign in to comment.