Added CMake hint when searching for LibreSSL directory on macOS

This commit is contained in:
Cole Blakley 2024-11-29 17:33:33 -07:00 committed by csb6
parent a6d8cddefe
commit b06265cf55

View File

@ -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/"