Skip to content

Commit

Permalink
test2
Browse files Browse the repository at this point in the history
  • Loading branch information
nmoinvaz committed Jun 8, 2024
1 parent d52467d commit 2dcff78
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -413,16 +413,17 @@ if(MZ_OPENSSL)

if(OPENSSL_FOUND)
message(STATUS "Using OpenSSL ${OPENSSL_VERSION}")
message(STATUS "Using OpenSSL include directory: ${OPENSSL_INCLUDE_DIR}")
message(STATUS "Using OpenSSL include directory: ${OPENSSL_INCLUDE_DIRS}")

list(APPEND MINIZIP_SRC mz_crypt_openssl.c)
list(APPEND MINIZIP_LIB ${OPENSSL_LIBRARIES})
list(APPEND MINIZIP_LBD ${OPENSSL_LIBRARY_DIRS})

if(OPENSSL_INCLUDE_DIRS)
message(STATUS "Using OpenSSL include directory: ${OPENSSL_INCLUDE_DIRS}")
list(APPEND MINIZIP_INC ${OPENSSL_INCLUDE_DIRS})
endif()
if(OPENSSL_INCLUDE_DIR)
message(STATUS "Using OpenSSL include directory: ${OPENSSL_INCLUDE_DIR}")
list(APPEND MINIZIP_INC ${OPENSSL_INCLUDE_DIR})
endif()

Expand Down

0 comments on commit 2dcff78

Please sign in to comment.