diff options
| author | 2023-10-14 01:15:28 +0200 | |
|---|---|---|
| committer | 2023-10-14 01:15:28 +0200 | |
| commit | 22e4add56295c49ca8d6c3ee693edfd1aba269a9 (patch) | |
| tree | ab40c56f220fa9e137ddc16c493e3af2d7126180 /src | |
| parent | qt: add network components when using discord (diff) | |
| download | yuzu-22e4add56295c49ca8d6c3ee693edfd1aba269a9.tar.gz yuzu-22e4add56295c49ca8d6c3ee693edfd1aba269a9.tar.xz yuzu-22e4add56295c49ca8d6c3ee693edfd1aba269a9.zip | |
qt: add missing target_link_libraries for discordrpc
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index 9ebece907..34208ed74 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt | |||
| @@ -384,7 +384,7 @@ if (USE_DISCORD_PRESENCE) | |||
| 384 | discord_impl.cpp | 384 | discord_impl.cpp |
| 385 | discord_impl.h | 385 | discord_impl.h |
| 386 | ) | 386 | ) |
| 387 | target_link_libraries(yuzu PRIVATE DiscordRPC::discord-rpc httplib::httplib) | 387 | target_link_libraries(yuzu PRIVATE DiscordRPC::discord-rpc httplib::httplib Qt${QT_MAJOR_VERSION}::Network) |
| 388 | target_compile_definitions(yuzu PRIVATE -DUSE_DISCORD_PRESENCE) | 388 | target_compile_definitions(yuzu PRIVATE -DUSE_DISCORD_PRESENCE) |
| 389 | endif() | 389 | endif() |
| 390 | 390 | ||