From c7d0c735877f5332eab5c3f881abc161599e38d0 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Mon, 24 Jul 2023 14:21:49 +0200 Subject: [PATCH] Build: Rename deployqt.py to deploy.py It hasn't been about just deploying Qt for a very long time. Change-Id: I72fb070db505909500d2e68f2bafb198c3342c2b Reviewed-by: Cristian Adam --- cmake/Utils.cmake | 4 ++-- scripts/{deployqt.py => deploy.py} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename scripts/{deployqt.py => deploy.py} (100%) diff --git a/cmake/Utils.cmake b/cmake/Utils.cmake index d684b972648..b08aaee4a84 100644 --- a/cmake/Utils.cmake +++ b/cmake/Utils.cmake @@ -32,7 +32,7 @@ function(setup_dependencies_component) set(_ide_app_target \"\${_default_app_target}\") if (NOT EXISTS \"\${_ide_app_target}\") # The component CPack generators (WIX, NSIS64, IFW) install every component with their own CMAKE_INSTALL_PREFIX - # directory and since deployqt.py needs the path to IDE_APP_TARGET the line below is needeed + # directory and since deploy.py needs the path to IDE_APP_TARGET the line below is needeed string(REPLACE \"Dependencies\" \"${CMAKE_INSTALL_DEFAULT_COMPONENT_NAME}\" _ide_app_target \"\${_ide_app_target}\") endif() if (NOT EXISTS \"\${_ide_app_target}\") @@ -41,7 +41,7 @@ function(setup_dependencies_component) endif() execute_process(COMMAND \"${Python3_EXECUTABLE}\" - \"${CMAKE_CURRENT_LIST_DIR}/scripts/deployqt.py\" + \"${CMAKE_CURRENT_LIST_DIR}/scripts/deploy.py\" ${_llvm_arg} ${_elfutils_arg} \"\${_ide_app_target}\" diff --git a/scripts/deployqt.py b/scripts/deploy.py similarity index 100% rename from scripts/deployqt.py rename to scripts/deploy.py