summaryrefslogtreecommitdiffstats
path: root/cmake/QtBuild.cmake
diff options
context:
space:
mode:
authorMikolaj Boc <mikolaj.boc@qt.io>2022-08-15 09:14:27 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2022-08-15 16:46:12 +0000
commit644ae42e12feb0056385ddb28f444e72107c9dc7 (patch)
tree344d22c0cb968e1d215a6028296dc36a84668e21 /cmake/QtBuild.cmake
parent360f1547f70fd5752a3a44892bfe5009a4357f3c (diff)
Make wasm finalizers work for standalone tests and other repos
The wasm helpers file is not included in QtBuild and is thus not visible when standalone tests or other repos are being built. This fixes it. Amends 1f9c1f032c5d8af2c6758081eb8de076fe678b53 Pick-to: 6.4 Fixes: QTBUG-105615 Change-Id: I6c9229e1f259fa5043d7d11b8ee0293e26077f3e Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'cmake/QtBuild.cmake')
-rw-r--r--cmake/QtBuild.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmake/QtBuild.cmake b/cmake/QtBuild.cmake
index 4f49ba7d8e..40c7080584 100644
--- a/cmake/QtBuild.cmake
+++ b/cmake/QtBuild.cmake
@@ -546,6 +546,10 @@ if(ANDROID)
include(QtAndroidHelpers)
endif()
+if(WASM)
+ include(QtWasmHelpers)
+endif()
+
# Helpers that are available in public projects and while building Qt itself.
include(QtPublicCMakeHelpers)
include(QtPublicPluginHelpers)