diff options
| -rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d60d1a5bf..3da8465b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -7,10 +7,10 @@ include(DownloadExternals) | |||
| 7 | project(yuzu) | 7 | project(yuzu) |
| 8 | 8 | ||
| 9 | option(ENABLE_SDL2 "Enable the SDL2 frontend" ON) | 9 | option(ENABLE_SDL2 "Enable the SDL2 frontend" ON) |
| 10 | option(CITRA_USE_BUNDLED_SDL2 "Download bundled SDL2 binaries" OFF) | 10 | option(YUZU_USE_BUNDLED_SDL2 "Download bundled SDL2 binaries" OFF) |
| 11 | 11 | ||
| 12 | option(ENABLE_QT "Enable the Qt frontend" ON) | 12 | option(ENABLE_QT "Enable the Qt frontend" ON) |
| 13 | option(CITRA_USE_BUNDLED_QT "Download bundled Qt binaries" OFF) | 13 | option(YUZU_USE_BUNDLED_QT "Download bundled Qt binaries" OFF) |
| 14 | 14 | ||
| 15 | option(YUZU_USE_BUNDLED_UNICORN "Download bundled Unicorn binaries" OFF) | 15 | option(YUZU_USE_BUNDLED_UNICORN "Download bundled Unicorn binaries" OFF) |
| 16 | 16 | ||
| @@ -174,12 +174,12 @@ set(THREADS_PREFER_PTHREAD_FLAG ON) | |||
| 174 | find_package(Threads REQUIRED) | 174 | find_package(Threads REQUIRED) |
| 175 | 175 | ||
| 176 | if (ENABLE_SDL2) | 176 | if (ENABLE_SDL2) |
| 177 | if (CITRA_USE_BUNDLED_SDL2) | 177 | if (YUZU_USE_BUNDLED_SDL2) |
| 178 | # Detect toolchain and platform | 178 | # Detect toolchain and platform |
| 179 | if (MSVC14 AND ARCHITECTURE_x86_64) | 179 | if (MSVC14 AND ARCHITECTURE_x86_64) |
| 180 | set(SDL2_VER "SDL2-2.0.5") | 180 | set(SDL2_VER "SDL2-2.0.5") |
| 181 | else() | 181 | else() |
| 182 | message(FATAL_ERROR "No bundled SDL2 binaries for your toolchain. Disable CITRA_USE_BUNDLED_SDL2 and provide your own.") | 182 | message(FATAL_ERROR "No bundled SDL2 binaries for your toolchain. Disable YUZU_USE_BUNDLED_SDL2 and provide your own.") |
| 183 | endif() | 183 | endif() |
| 184 | 184 | ||
| 185 | if (DEFINED SDL2_VER) | 185 | if (DEFINED SDL2_VER) |
| @@ -235,11 +235,11 @@ if (UNICORN_FOUND) | |||
| 235 | endif() | 235 | endif() |
| 236 | 236 | ||
| 237 | if (ENABLE_QT) | 237 | if (ENABLE_QT) |
| 238 | if (CITRA_USE_BUNDLED_QT) | 238 | if (YUZU_USE_BUNDLED_QT) |
| 239 | if (MSVC14 AND ARCHITECTURE_x86_64) | 239 | if (MSVC14 AND ARCHITECTURE_x86_64) |
| 240 | set(QT_VER qt-5.7-msvc2015_64) | 240 | set(QT_VER qt-5.7-msvc2015_64) |
| 241 | else() | 241 | else() |
| 242 | message(FATAL_ERROR "No bundled Qt binaries for your toolchain. Disable CITRA_USE_BUNDLED_QT and provide your own.") | 242 | message(FATAL_ERROR "No bundled Qt binaries for your toolchain. Disable YUZU_USE_BUNDLED_QT and provide your own.") |
| 243 | endif() | 243 | endif() |
| 244 | 244 | ||
| 245 | if (DEFINED QT_VER) | 245 | if (DEFINED QT_VER) |