summaryrefslogtreecommitdiffstats
path: root/cmake/QtProcessConfigureArgs.cmake
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2020-11-10 15:31:55 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2020-11-10 18:06:54 +0100
commit88efeb9e258a473ca5f98eaf2ee25719e23263fd (patch)
tree39ed162951b1dbd6c79e7020721a75fcff9b9290 /cmake/QtProcessConfigureArgs.cmake
parentbd6784b57909a87134c8bb5ddec73b27b8f1260b (diff)
CMake: Map configure -hostdatadir to INSTALL_MKSPECSDIR
In the qmake-based build, the hostdatadir is the directory where "Data used by qmake" is located. In the CMake build the equivalent is INSTALL_MKSPECSDIR. Create the mapping accordingly. Fixes: QTBUG-88211 Change-Id: I9e3d1af24bc7f41333ef2269fced5ab3fcfa848d Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'cmake/QtProcessConfigureArgs.cmake')
-rw-r--r--cmake/QtProcessConfigureArgs.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/cmake/QtProcessConfigureArgs.cmake b/cmake/QtProcessConfigureArgs.cmake
index cb92c0fbca..8fb8d2f6a5 100644
--- a/cmake/QtProcessConfigureArgs.cmake
+++ b/cmake/QtProcessConfigureArgs.cmake
@@ -75,6 +75,12 @@ while(configure_args)
elseif(arg STREQUAL "-qt-host-path")
pop_path_argument()
push("-DQT_HOST_PATH=${path}")
+ elseif(arg STREQUAL "-hostdatadir")
+ pop_path_argument()
+ if(NOT path MATCHES "(^|/)mkspecs$")
+ string(APPEND path "/mkspecs")
+ endif()
+ push("-DINSTALL_MKSPECSDIR=${path}")
elseif(arg MATCHES "^-host.*dir")
message(FATAL_ERROR "${arg} is not supported anymore.")
elseif(arg STREQUAL "--")