From 27bce3c8b138ee513a4b11b33df142ec1861e979 Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Sat, 22 Apr 2023 01:02:57 -0500 Subject: [PATCH] Migrating qt_generate_deploy_app_script to Qt 6.5 syntax --- scwx-qt/scwx-qt.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scwx-qt/scwx-qt.cmake b/scwx-qt/scwx-qt.cmake index 6792ee1f..092475fa 100644 --- a/scwx-qt/scwx-qt.cmake +++ b/scwx-qt/scwx-qt.cmake @@ -402,12 +402,12 @@ install(TARGETS supercell-wx # NO_TRANSLATIONS is needed for Qt 6.5.0 (will be fixed in 6.5.1) # https://bugreports.qt.io/browse/QTBUG-112204 qt_generate_deploy_app_script(TARGET qmaplibregl - FILENAME_VARIABLE deploy_script_qmaplibregl + OUTPUT_SCRIPT deploy_script_qmaplibregl NO_TRANSLATIONS NO_UNSUPPORTED_PLATFORM_ERROR) qt_generate_deploy_app_script(TARGET supercell-wx - FILENAME_VARIABLE deploy_script_scwx + OUTPUT_SCRIPT deploy_script_scwx NO_TRANSLATIONS NO_UNSUPPORTED_PLATFORM_ERROR)