Skip to content

Commit

Permalink
try linking openssl on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Apr 2, 2019
1 parent 8aad127 commit d07dac0
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions cmake/openssl.cmake
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
if (UNIX)
find_package(OpenSSL 1.1)
if (OPENSSL_FOUND)
set(ARBITER_OPENSSL TRUE)
else ()
message("OpenSSL NOT found - `export OPENSSL_ROOT_DIR=___`")
message("Google storage IO will not be available")
endif ()
endif()
find_package(OpenSSL 1.1)
if (OPENSSL_FOUND)
set(ARBITER_OPENSSL TRUE)
else ()
message("OpenSSL NOT found - `export OPENSSL_ROOT_DIR=___`")
message("Google storage IO will not be available")
endif ()

0 comments on commit d07dac0

Please sign in to comment.