diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-12-24 16:23:31 -0500 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-12-28 15:32:39 -0500 |
commit | 45da3be40edd71195b7aac633187fc81956e3150 (patch) | |
tree | 52e297ec9e0d34e99300f3eb944534c4f9f187e3 /src/yuzu/CMakeLists.txt | |
parent | e00e1fc755501018c4106e8453045037d5b9e3ee (diff) |
main: Add main window integrations for QtWebBrowserApplet
Diffstat (limited to 'src/yuzu/CMakeLists.txt')
-rw-r--r-- | src/yuzu/CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index 17ecaafde..c6378bce9 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt @@ -11,6 +11,8 @@ add_executable(yuzu applets/profile_select.h applets/software_keyboard.cpp applets/software_keyboard.h + applets/web_browser.cpp + applets/web_browser.h bootmanager.cpp bootmanager.h compatibility_list.cpp @@ -154,6 +156,11 @@ if (USE_DISCORD_PRESENCE) target_compile_definitions(yuzu PRIVATE -DUSE_DISCORD_PRESENCE) endif() +if (YUZU_USE_QT_WEB_ENGINE) + target_link_libraries(yuzu PRIVATE Qt5::WebEngineCore Qt5::WebEngineWidgets) + target_compile_definitions(yuzu PRIVATE -DYUZU_USE_QT_WEB_ENGINE) +endif () + if(UNIX AND NOT APPLE) install(TARGETS yuzu RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") endif() |