From 1bc784b4832f7dbaad5a8c0bd405f823e5f7ddfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20P=C3=A9rez=20Alonso?= Date: Sat, 15 Aug 2026 02:56:39 +0200 Subject: [PATCH] fix(Windows): use app name as file description Updates the Windows file description to use the application name instead of the project description, matching the fallback RC template, as well as common Windows practice. Previously, Windows prompts such as the Firewall popup would display the generic project description instead of the application name. The application name is now shown instead, as expected. --- cmake/platform/Windows.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/platform/Windows.cmake b/cmake/platform/Windows.cmake index 1bd7079a4455..4a336fe95a09 100644 --- a/cmake/platform/Windows.cmake +++ b/cmake/platform/Windows.cmake @@ -32,7 +32,7 @@ if(COMMAND _qt_internal_generate_win32_rc_file) set_target_properties(${CMAKE_PROJECT_NAME} PROPERTIES QT_TARGET_COMPANY_NAME "${QGC_ORG_NAME}" - QT_TARGET_DESCRIPTION "${CMAKE_PROJECT_DESCRIPTION}" + QT_TARGET_DESCRIPTION "${CMAKE_PROJECT_NAME}" QT_TARGET_VERSION "${CMAKE_PROJECT_VERSION}" QT_TARGET_COPYRIGHT "${QGC_APP_COPYRIGHT}" QT_TARGET_PRODUCT_NAME "${CMAKE_PROJECT_NAME}"