diff options
| author | 2022-12-28 17:18:27 -0500 | |
|---|---|---|
| committer | 2022-12-28 17:18:27 -0500 | |
| commit | 106cf27135d83fd529848b527009f4a0cfb25c4b (patch) | |
| tree | eb7a6d121172fda93001225a268d7eaf26e55725 /src | |
| parent | Merge pull request #9490 from ameerj/texture-cache-prealloc (diff) | |
| download | yuzu-106cf27135d83fd529848b527009f4a0cfb25c4b.tar.gz yuzu-106cf27135d83fd529848b527009f4a0cfb25c4b.tar.xz yuzu-106cf27135d83fd529848b527009f4a0cfb25c4b.zip | |
cmake: make room server optional
Diffstat (limited to 'src')
| -rw-r--r-- | src/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
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) |