diff options
| author | 2022-08-16 23:13:05 +0200 | |
|---|---|---|
| committer | 2022-08-27 03:02:21 +0200 | |
| commit | b904652d69fb3d3bf1918a7dd7f04bc049c9f460 (patch) | |
| tree | 4a252395a2a51d8998ef088e446c1f9a7f238aa3 /src/dedicated_room | |
| parent | Merge pull request #8566 from german77/galaxy (diff) | |
| download | yuzu-b904652d69fb3d3bf1918a7dd7f04bc049c9f460.tar.gz yuzu-b904652d69fb3d3bf1918a7dd7f04bc049c9f460.tar.xz yuzu-b904652d69fb3d3bf1918a7dd7f04bc049c9f460.zip | |
yuzu_room: Remove dependency on core
Diffstat (limited to 'src/dedicated_room')
| -rw-r--r-- | src/dedicated_room/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/dedicated_room/yuzu_room.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/dedicated_room/CMakeLists.txt b/src/dedicated_room/CMakeLists.txt index b674b915b..737aedbe4 100644 --- a/src/dedicated_room/CMakeLists.txt +++ b/src/dedicated_room/CMakeLists.txt | |||
| @@ -10,7 +10,7 @@ add_executable(yuzu-room | |||
| 10 | 10 | ||
| 11 | create_target_directory_groups(yuzu-room) | 11 | create_target_directory_groups(yuzu-room) |
| 12 | 12 | ||
| 13 | target_link_libraries(yuzu-room PRIVATE common core network) | 13 | target_link_libraries(yuzu-room PRIVATE common network) |
| 14 | if (ENABLE_WEB_SERVICE) | 14 | if (ENABLE_WEB_SERVICE) |
| 15 | target_compile_definitions(yuzu-room PRIVATE -DENABLE_WEB_SERVICE) | 15 | target_compile_definitions(yuzu-room PRIVATE -DENABLE_WEB_SERVICE) |
| 16 | target_link_libraries(yuzu-room PRIVATE web_service) | 16 | target_link_libraries(yuzu-room PRIVATE web_service) |
diff --git a/src/dedicated_room/yuzu_room.cpp b/src/dedicated_room/yuzu_room.cpp index 482e772fb..7c1a75de3 100644 --- a/src/dedicated_room/yuzu_room.cpp +++ b/src/dedicated_room/yuzu_room.cpp | |||
| @@ -27,8 +27,8 @@ | |||
| 27 | #include "common/scm_rev.h" | 27 | #include "common/scm_rev.h" |
| 28 | #include "common/settings.h" | 28 | #include "common/settings.h" |
| 29 | #include "common/string_util.h" | 29 | #include "common/string_util.h" |
| 30 | #include "core/announce_multiplayer_session.h" | ||
| 31 | #include "core/core.h" | 30 | #include "core/core.h" |
| 31 | #include "network/announce_multiplayer_session.h" | ||
| 32 | #include "network/network.h" | 32 | #include "network/network.h" |
| 33 | #include "network/room.h" | 33 | #include "network/room.h" |
| 34 | #include "network/verify_user.h" | 34 | #include "network/verify_user.h" |