diff options
| author | 2023-07-01 15:02:25 -0700 | |
|---|---|---|
| committer | 2023-07-01 17:27:35 -0700 | |
| commit | 0e191c271125321589dfdbb09731413550710c9a (patch) | |
| tree | e0d9e826197d2fd66cc9b7fd8d11cc8c7fd6e3ac /CMakeLists.txt | |
| parent | Merge remote-tracking branch 'origin/master' into ssl (diff) | |
| download | yuzu-0e191c271125321589dfdbb09731413550710c9a.tar.gz yuzu-0e191c271125321589dfdbb09731413550710c9a.tar.xz yuzu-0e191c271125321589dfdbb09731413550710c9a.zip | |
Updates:
- Address PR feedback.
- Add SecureTransport backend for macOS.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e74733d6..14a9d85e3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -64,8 +64,9 @@ option(YUZU_DOWNLOAD_TIME_ZONE_DATA "Always download time zone binaries" OFF) | |||
| 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 | set(DEFAULT_ENABLE_OPENSSL ON) | 66 | set(DEFAULT_ENABLE_OPENSSL ON) |
| 67 | if (ANDROID OR WIN32) | 67 | if (ANDROID OR WIN32 OR APPLE) |
| 68 | # - Windows defaults to the Schannel backend. | 68 | # - Windows defaults to the Schannel backend. |
| 69 | # - macOS defaults to the SecureTransport backend. | ||
| 69 | # - Android currently has no SSL backend as the NDK doesn't include any SSL | 70 | # - Android currently has no SSL backend as the NDK doesn't include any SSL |
| 70 | # library; a proper 'native' backend would have to go through Java. | 71 | # library; a proper 'native' backend would have to go through Java. |
| 71 | # But you can force builds for those platforms to use OpenSSL if you have | 72 | # But you can force builds for those platforms to use OpenSSL if you have |