summaryrefslogtreecommitdiff
path: root/src/web_service/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar liamwhite2022-07-25 18:31:45 -0400
committerGravatar GitHub2022-07-25 18:31:45 -0400
commit1e67d2b59f6dfd561768db3fb9a8e0c6a16ec9f2 (patch)
tree999411f1ca76390654d1034c6d0bd2c47c3f101c /src/web_service/CMakeLists.txt
parentMerge pull request #8564 from lat9nq/dinner-fork (diff)
parentnetwork: Address review comments (diff)
downloadyuzu-1e67d2b59f6dfd561768db3fb9a8e0c6a16ec9f2.tar.gz
yuzu-1e67d2b59f6dfd561768db3fb9a8e0c6a16ec9f2.tar.xz
yuzu-1e67d2b59f6dfd561768db3fb9a8e0c6a16ec9f2.zip
Merge pull request #8541 from FearlessTobi/multiplayer-part1
yuzu, network: Add room service and UI configuration
Diffstat (limited to 'src/web_service/CMakeLists.txt')
-rw-r--r--src/web_service/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/web_service/CMakeLists.txt b/src/web_service/CMakeLists.txt
index ae85a72ea..753fb6e7a 100644
--- a/src/web_service/CMakeLists.txt
+++ b/src/web_service/CMakeLists.txt
@@ -1,12 +1,16 @@
1add_library(web_service STATIC 1add_library(web_service STATIC
2 announce_room_json.cpp
3 announce_room_json.h
2 telemetry_json.cpp 4 telemetry_json.cpp
3 telemetry_json.h 5 telemetry_json.h
4 verify_login.cpp 6 verify_login.cpp
5 verify_login.h 7 verify_login.h
8 verify_user_jwt.cpp
9 verify_user_jwt.h
6 web_backend.cpp 10 web_backend.cpp
7 web_backend.h 11 web_backend.h
8 web_result.h 12 web_result.h
9) 13)
10 14
11create_target_directory_groups(web_service) 15create_target_directory_groups(web_service)
12target_link_libraries(web_service PRIVATE common nlohmann_json::nlohmann_json httplib) 16target_link_libraries(web_service PRIVATE common network nlohmann_json::nlohmann_json httplib cpp-jwt)