summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2021-06-23 11:30:14 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-06-30 12:08:28 +0000
commitdb6690e9e6fb823925e68df9b4bf6bdc785f1b04 (patch)
treeb4b4b9ca56c80204d5a2c32f9e04ffddaed60282 /src
parent94a1058bdb29f6ff911820563565193ea263929d (diff)
Pass compiler wrapper to GN
Change-Id: I1ce6e9d0e03bb780f85636865e15552ac28876fa Reviewed-by: Michal Klocek <michal.klocek@qt.io> (cherry picked from commit 1efcf20bcc1d41edb56d4ef491dc9c26b7a98f15) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src')
-rw-r--r--src/core/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
index f12be9cc7..6c73e694f 100644
--- a/src/core/CMakeLists.txt
+++ b/src/core/CMakeLists.txt
@@ -284,6 +284,9 @@ foreach(config ${configs})
elseif(${config} STREQUAL "MinSizeRel")
list(APPEND gnArgArg is_debug=false symbol_level=0 optimize_for_size=true)
endif()
+ if (CMAKE_CXX_COMPILER_LAUNCHER)
+ list(APPEND gnArgArg cc_wrapper="${CMAKE_CXX_COMPILER_LAUNCHER}")
+ endif()
list(APPEND gnArgArg
qtwebengine_target="${buildDir}/${config}:QtWebEngineCore"