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