diff options
| author | 2023-10-14 09:58:33 -0400 | |
|---|---|---|
| committer | 2023-10-14 09:58:33 -0400 | |
| commit | 1a4abd184f8085f29a18453bdc4aabb3c038907a (patch) | |
| tree | a7c5f8fe4070f34d9433ad0576a7be6bc04c7488 /src | |
| parent | Merge pull request #11779 from flodavid/improve-player-config-click (diff) | |
| parent | Revert "cmake: only add network component if qt used" (diff) | |
| download | yuzu-1a4abd184f8085f29a18453bdc4aabb3c038907a.tar.gz yuzu-1a4abd184f8085f29a18453bdc4aabb3c038907a.tar.xz yuzu-1a4abd184f8085f29a18453bdc4aabb3c038907a.zip | |
Merge pull request #11780 from Darkness4/master
qt: add network components when using discord
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 | ||