Skip to content

Commit

Permalink
Added CMake hint when searching for LibreSSL directory on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
csb6 committed Nov 30, 2024
1 parent a6d8cdd commit b06265c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions FindLibreSSL.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ if (WIN32)
"${_programfiles}/LibreSSL"
)
unset(_programfiles)
elseif(APPLE)
# Homebrew installs LibreSSL here
set(_LIBRESSL_ROOT_PATHS
"/usr/local/opt/libressl"
)
else()
set(_LIBRESSL_ROOT_PATHS
"/usr/local/"
Expand Down

0 comments on commit b06265c

Please sign in to comment.