summaryrefslogtreecommitdiffstats
path: root/src/process
diff options
context:
space:
mode:
authorKai Köhne <kai.koehne@qt.io>2021-07-13 16:34:32 +0200
committerKai Koehne <kai.koehne@qt.io>2021-07-16 18:00:49 +0000
commit09e5da6ac44c01ae0de34b789c42da515e82f07c (patch)
treec2f5e9ba6c3f71c71404646f9f26fb2ae38d5166 /src/process
parenta4cf124c839c271b3132d91fc5b580e09a1ae95f (diff)
Do not install QtWebEngineProcess twice
Pass NO_INSTALL, so that QtWebEngineProcess is not installed into INSTALL_BINDIR. We have explicit install rules further down below. Pick-to: 6.2 Fixes: QTBUG-95153 Change-Id: I2dfae1e8a6bb9183d25590b7ba5cdb136252a1e4 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'src/process')
-rw-r--r--src/process/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/process/CMakeLists.txt b/src/process/CMakeLists.txt
index 3b0ee588f..6d35d632c 100644
--- a/src/process/CMakeLists.txt
+++ b/src/process/CMakeLists.txt
@@ -8,7 +8,10 @@ find_package(Qt6 COMPONENTS Gui)
get_target_property(qtWebEngineProcessName WebEngineCore QTWEBENGINEPROCESS_NAME)
get_target_property(isFramework WebEngineCore FRAMEWORK)
-qt_internal_add_executable(${qtWebEngineProcessName} SOURCES main.cpp)
+qt_internal_add_executable(${qtWebEngineProcessName}
+ NO_INSTALL
+ SOURCES main.cpp
+)
if(WIN32)
target_sources(${qtWebEngineProcessName} PRIVATE support_win.cpp)