summaryrefslogtreecommitdiffstats
path: root/cmake/QtProcessConfigureArgs.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/QtProcessConfigureArgs.cmake')
-rw-r--r--cmake/QtProcessConfigureArgs.cmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/cmake/QtProcessConfigureArgs.cmake b/cmake/QtProcessConfigureArgs.cmake
index 90371ae419..038905ece7 100644
--- a/cmake/QtProcessConfigureArgs.cmake
+++ b/cmake/QtProcessConfigureArgs.cmake
@@ -543,6 +543,8 @@ if(options_json_file)
return()
endif()
+set(cmake_var_assignments)
+
while(1)
qtConfHasNextCommandlineArg(has_next)
if(NOT has_next)
@@ -561,6 +563,12 @@ while(1)
continue()
endif()
+ # Handle variable assignments
+ if(arg MATCHES "^([a-zA-Z0-9_-]+)=(.*)")
+ list(APPEND cmake_var_assignments "${arg}")
+ continue()
+ endif()
+
# parse out opt and val
set(nextok FALSE)
if(arg MATCHES "^--?enable-(.*)")
@@ -903,6 +911,11 @@ if(generator)
push(-G "${generator}")
endif()
+# Add CMake variable assignments near the end to allow users to overwrite what configure sets.
+foreach(arg IN LISTS cmake_var_assignments)
+ push("-D${arg}")
+endforeach()
+
push("${MODULE_ROOT}")
# Restore the escaped semicolons in arguments that are lists