diff options
| -rw-r--r-- | CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/CMakeLists.txt | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f71a8b3e3..a454baa74 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -47,6 +47,8 @@ option(YUZU_TESTS "Compile tests" ON) | |||
| 47 | 47 | ||
| 48 | option(YUZU_USE_PRECOMPILED_HEADERS "Use precompiled headers" ON) | 48 | option(YUZU_USE_PRECOMPILED_HEADERS "Use precompiled headers" ON) |
| 49 | 49 | ||
| 50 | option(YUZU_ROOM "Compile LDN room server" ON) | ||
| 51 | |||
| 50 | CMAKE_DEPENDENT_OPTION(YUZU_CRASH_DUMPS "Compile Windows crash dump (Minidump) support" OFF "WIN32" OFF) | 52 | CMAKE_DEPENDENT_OPTION(YUZU_CRASH_DUMPS "Compile Windows crash dump (Minidump) support" OFF "WIN32" OFF) |
| 51 | 53 | ||
| 52 | option(YUZU_USE_BUNDLED_VCPKG "Use vcpkg for yuzu dependencies" "${MSVC}") | 54 | option(YUZU_USE_BUNDLED_VCPKG "Use vcpkg for yuzu dependencies" "${MSVC}") |
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 140415474..c7283e82c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt | |||
| @@ -161,7 +161,10 @@ add_subdirectory(video_core) | |||
| 161 | add_subdirectory(network) | 161 | add_subdirectory(network) |
| 162 | add_subdirectory(input_common) | 162 | add_subdirectory(input_common) |
| 163 | add_subdirectory(shader_recompiler) | 163 | add_subdirectory(shader_recompiler) |
| 164 | add_subdirectory(dedicated_room) | 164 | |
| 165 | if (YUZU_ROOM) | ||
| 166 | add_subdirectory(dedicated_room) | ||
| 167 | endif() | ||
| 165 | 168 | ||
| 166 | if (YUZU_TESTS) | 169 | if (YUZU_TESTS) |
| 167 | add_subdirectory(tests) | 170 | add_subdirectory(tests) |