From 2f88463203deae30c25a1cbedebf29f6419a882f Mon Sep 17 00:00:00 2001 From: crueter Date: Wed, 15 Oct 2025 01:03:23 +0200 Subject: [PATCH] [cmake] do not link discord_impl to httplib (#2740) This is unnecessary Signed-off-by: crueter Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/2740 --- src/yuzu/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index a8e3953716..f6f752af3b 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt @@ -425,7 +425,7 @@ if (USE_DISCORD_PRESENCE) discord_impl.cpp discord_impl.h ) - target_link_libraries(yuzu PRIVATE DiscordRPC::discord-rpc httplib::httplib Qt6::Network) + target_link_libraries(yuzu PRIVATE DiscordRPC::discord-rpc Qt6::Network) target_compile_definitions(yuzu PRIVATE USE_DISCORD_PRESENCE) endif()