summaryrefslogtreecommitdiffstats
path: root/src/plugins/CMakeLists.txt
diff options
context:
space:
mode:
authorMorteza Jamshidi <[email protected]>2025-03-07 13:25:28 +0100
committerMichal Klocek <[email protected]>2025-05-30 15:53:35 +0200
commit81b6881cf042988f588959a0090253199a3546cf (patch)
tree56c73bc619de6efb112a40e85931fff3f174e1ef /src/plugins/CMakeLists.txt
parentf7c6ad95b4cf7f6be7a90e2fdce3d0ad43b37f70 (diff)
Implement WebView2 windows plugin for qt webviewHEADdev6.10
with this plugin qt webview uses webview2 in the backend for windows Task-number: QTBUG-75747 Change-Id: Iab91b95386be6b32c7acfb97f029ed49a6560745 Reviewed-by: Allan Sandfeld Jensen <[email protected]>
Diffstat (limited to 'src/plugins/CMakeLists.txt')
-rw-r--r--src/plugins/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt
index 510604a..3cbc620 100644
--- a/src/plugins/CMakeLists.txt
+++ b/src/plugins/CMakeLists.txt
@@ -8,7 +8,10 @@ elseif(IOS OR MACOS)
elseif(WASM)
add_subdirectory(wasm)
endif()
-if(WINRT)
+
+if(QT_FEATURE_webview_webview2)
+ add_subdirectory(windows)
+elseif(WINRT)
add_subdirectory(winrt)
endif()
if(TARGET Qt::WebEngineCore)