summaryrefslogtreecommitdiff
path: root/src/web_service
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-12-05 12:26:09 -0500
committerGitHub <noreply@github.com>2022-12-05 12:26:09 -0500
commit3b19f741bd6a19f603858e6cdf8db41516c7075f (patch)
treeb81c29eed062f83a3f01161710b00d5d531e666b /src/web_service
parentc7f32300b21eed44b14a6ad1f7fd5222d7445fd1 (diff)
parent8e17b5469fc7f5211fc3e24841896ea030adce84 (diff)
Merge pull request #6833 from abouvier/unbundle
cmake: prefer system libraries
Diffstat (limited to 'src/web_service')
-rw-r--r--src/web_service/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web_service/CMakeLists.txt b/src/web_service/CMakeLists.txt
index 19534b9e4..02582aa04 100644
--- a/src/web_service/CMakeLists.txt
+++ b/src/web_service/CMakeLists.txt
@@ -17,7 +17,7 @@ add_library(web_service STATIC
)
create_target_directory_groups(web_service)
-target_link_libraries(web_service PRIVATE common network nlohmann_json::nlohmann_json httplib cpp-jwt)
+target_link_libraries(web_service PRIVATE common network nlohmann_json::nlohmann_json httplib::httplib cpp-jwt::cpp-jwt)
if (YUZU_USE_PRECOMPILED_HEADERS)
target_precompile_headers(web_service PRIVATE precompiled_headers.h)