CMake: Warn if DEPLOY_TOOL_OPTIONS is used on Linux
...or rather when it's used with the generic deployment tool. Pick-to: 6.7 Task-number: QTBUG-121708 Change-Id: I161564923a43c82150f581874ba20a9ad6de310f Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>bb10
parent
528032c027
commit
e39d13bc87
|
|
@ -464,6 +464,13 @@ function(qt6_deploy_runtime_dependencies)
|
|||
if(__QT_DEPLOY_TOOL STREQUAL "GRD")
|
||||
message(STATUS "Running generic Qt deploy tool on ${arg_EXECUTABLE}")
|
||||
|
||||
if(NOT "${arg_DEPLOY_TOOL_OPTIONS}" STREQUAL "")
|
||||
message(WARNING
|
||||
"DEPLOY_TOOL_OPTIONS was specified but has no effect when using the generic "
|
||||
"deployment tool."
|
||||
)
|
||||
endif()
|
||||
|
||||
# Construct the EXECUTABLES, LIBRARIES and MODULES arguments.
|
||||
list(APPEND tool_options EXECUTABLES ${arg_EXECUTABLE})
|
||||
if(NOT "${arg_ADDITIONAL_EXECUTABLES}" STREQUAL "")
|
||||
|
|
|
|||
Loading…
Reference in New Issue