Bring back qt_finalize_executable

qt_finalize_executable was renamed to qt_finalize_target in commit
c4df673dd903. Anyhow, app wizards in Qt Creator 4.15 already use
it, so let's keep it as an synonym API for the time being.

Fixes: QTBUG-94156
Change-Id: I468443c80c027ac49a21208a9b15af1dbb4a5f84
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
Kai Köhne 2021-06-02 17:08:35 +02:00
parent 20b3eb0fd8
commit cda75ef27a

View File

@ -757,6 +757,11 @@ if(NOT QT_NO_CREATE_VERSIONLESS_FUNCTIONS)
function(qt_finalize_target)
qt6_finalize_target(${ARGV})
endfunction()
# Kept for compatibility with Qt Creator 4.15 wizards
function(qt_finalize_executable)
qt6_finalize_target(${ARGV})
endfunction()
endif()
# Temporarily keep compatibility, until all repositories are migrated.