From a23af3217c1d041217d2166a5896b1dee84b21ed Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Sat, 4 Feb 2023 00:53:49 -0600 Subject: [PATCH] Deploy QMapLibreGL first, in order to not overwrite translate files from supercell-wx target --- scwx-qt/scwx-qt.cmake | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scwx-qt/scwx-qt.cmake b/scwx-qt/scwx-qt.cmake index 7b036086..844254f3 100644 --- a/scwx-qt/scwx-qt.cmake +++ b/scwx-qt/scwx-qt.cmake @@ -371,16 +371,16 @@ install(TARGETS supercell-wx RUNTIME COMPONENT supercell-wx) -qt_generate_deploy_app_script(TARGET supercell-wx - FILENAME_VARIABLE deploy_script_scwx - NO_UNSUPPORTED_PLATFORM_ERROR) - qt_generate_deploy_app_script(TARGET qmaplibregl FILENAME_VARIABLE deploy_script_qmaplibregl NO_UNSUPPORTED_PLATFORM_ERROR) -install(SCRIPT ${deploy_script_scwx} - COMPONENT supercell-wx) +qt_generate_deploy_app_script(TARGET supercell-wx + FILENAME_VARIABLE deploy_script_scwx + NO_UNSUPPORTED_PLATFORM_ERROR) install(SCRIPT ${deploy_script_qmaplibregl} COMPONENT supercell-wx) + +install(SCRIPT ${deploy_script_scwx} + COMPONENT supercell-wx)