Browse Source
Merge pull request #11780 from Darkness4/master
qt: add network components when using discord
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
1 deletions
-
CMakeLists.txt
-
src/yuzu/CMakeLists.txt
|
|
|
@ -360,6 +360,9 @@ function(set_yuzu_qt_components) |
|
|
|
if (ENABLE_QT_TRANSLATION) |
|
|
|
list(APPEND YUZU_QT_COMPONENTS2 LinguistTools) |
|
|
|
endif() |
|
|
|
if (USE_DISCORD_PRESENCE) |
|
|
|
list(APPEND YUZU_QT_COMPONENTS2 Network) |
|
|
|
endif() |
|
|
|
set(YUZU_QT_COMPONENTS ${YUZU_QT_COMPONENTS2} PARENT_SCOPE) |
|
|
|
endfunction(set_yuzu_qt_components) |
|
|
|
|
|
|
|
|
|
|
|
@ -384,7 +384,7 @@ if (USE_DISCORD_PRESENCE) |
|
|
|
discord_impl.cpp |
|
|
|
discord_impl.h |
|
|
|
) |
|
|
|
target_link_libraries(yuzu PRIVATE DiscordRPC::discord-rpc httplib::httplib) |
|
|
|
target_link_libraries(yuzu PRIVATE DiscordRPC::discord-rpc httplib::httplib Qt${QT_MAJOR_VERSION}::Network) |
|
|
|
target_compile_definitions(yuzu PRIVATE -DUSE_DISCORD_PRESENCE) |
|
|
|
endif() |
|
|
|
|
|
|
|
|