diff options
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d3146c9e..c44febbc2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -63,6 +63,8 @@ option(YUZU_DOWNLOAD_TIME_ZONE_DATA "Always download time zone binaries" OFF) | |||
| 63 | 63 | ||
| 64 | CMAKE_DEPENDENT_OPTION(YUZU_USE_FASTER_LD "Check if a faster linker is available" ON "NOT WIN32" OFF) | 64 | CMAKE_DEPENDENT_OPTION(YUZU_USE_FASTER_LD "Check if a faster linker is available" ON "NOT WIN32" OFF) |
| 65 | 65 | ||
| 66 | CMAKE_DEPENDENT_OPTION(ENABLE_OPENSSL "Enable OpenSSL backend for ISslConnection" ON "NOT WIN32" OFF) | ||
| 67 | |||
| 66 | # On Android, fetch and compile libcxx before doing anything else | 68 | # On Android, fetch and compile libcxx before doing anything else |
| 67 | if (ANDROID) | 69 | if (ANDROID) |
| 68 | set(CMAKE_SKIP_INSTALL_RULES ON) | 70 | set(CMAKE_SKIP_INSTALL_RULES ON) |
| @@ -322,6 +324,10 @@ if (MINGW) | |||
| 322 | find_library(MSWSOCK_LIBRARY mswsock REQUIRED) | 324 | find_library(MSWSOCK_LIBRARY mswsock REQUIRED) |
| 323 | endif() | 325 | endif() |
| 324 | 326 | ||
| 327 | if(ENABLE_OPENSSL) | ||
| 328 | find_package(OpenSSL 3.0.0 REQUIRED) | ||
| 329 | endif() | ||
| 330 | |||
| 325 | # Please consider this as a stub | 331 | # Please consider this as a stub |
| 326 | if(ENABLE_QT6 AND Qt6_LOCATION) | 332 | if(ENABLE_QT6 AND Qt6_LOCATION) |
| 327 | list(APPEND CMAKE_PREFIX_PATH "${Qt6_LOCATION}") | 333 | list(APPEND CMAKE_PREFIX_PATH "${Qt6_LOCATION}") |