Skip to content

Commit

Permalink
Deactivate openssl on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-chaulet committed Mar 29, 2019
1 parent 49fb365 commit 2b18282
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions cmake/openssl.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
find_package(OpenSSL 1.1)
if (OPENSSL_FOUND)
set(ARBITER_OPENSSL TRUE)
else()
# For me this is /usr/local/opt/openssl\@1.1
message("OpenSSL NOT found - `export OPENSSL_ROOT_DIR=___`")
message("Google storage IO will not be available")
if (UNIX)
find_package(OpenSSL 1.1)
if (OPENSSL_FOUND AND UNIX)
set(ARBITER_OPENSSL TRUE)
else ()
message("OpenSSL NOT found - `export OPENSSL_ROOT_DIR=___`")

This comment has been minimized.

Copy link
@hobu

hobu Mar 29, 2019

Member

Is there a way to determine the OpenSSL issue on windows rather than dropping support for it?

message("Google storage IO will not be available")
endif ()
endif()

0 comments on commit 2b18282

Please sign in to comment.