CMake: fix typo in qt_finalize_executable snippet

Task-number: QTBUG-90943
Pick-to: 6.1 6.0
Change-Id: Idea90f1a5fdd2070102ebda85feed79abcba3f70
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
This commit is contained in:
Assam Boudjelthia 2021-02-09 16:01:49 +02:00
parent 1c2aa56cfa
commit ab907053bd

View File

@ -81,7 +81,7 @@ qt_add_executable(simpleapp main.cpp)
#! [qt_add_executable_deferred]
qt_add_executable(complexapp MANUAL_FINALIZATION complex.cpp)
set_target_properties(complexapp PROPERTIES OUTPUT_NAME Complexify)
qt_finalize_target(complexapp)
qt_finalize_executable(complexapp)
#! [qt_add_executable_deferred]
#! [qt_android_deploy_basic]