You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# We need to temporarily override the CMAKE_MODULE_PATH to force it to search in the system directories
20
+
set(CMAKE_MODULE_PATH_TMP $${CMAKE_MODULE_PATH})
20
21
set(CMAKE_MODULE_PATH "")
21
22
find_package(OpenSSL)
22
-
unset(CMAKE_MODULE_PATH)
23
+
set(CMAKE_MODULE_PATH $${CMAKE_MODULE_PATH_TMP})
23
24
24
25
if (NOT OpenSSL_FOUND)
25
26
message(FATAL_ERROR "Compiling on linux requires the development headers for OpenSSL. Try using your package manager to install the OpenSSL development libraries following https://wiki.openssl.org/index.php/Libssl_API")
0 commit comments