diff options
author | Brad King <brad.king@kitware.com> | 2024-01-24 19:57:32 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-01-24 20:28:13 (GMT) |
commit | 3ed275bbb61167d07f6ee2d6cbbcf61cd4d1fca0 (patch) | |
tree | a64b136b3523bd5d869c126dd885172c38b9c264 /Utilities | |
parent | ad50700038ab936c57ab1043f65b7f888ff62612 (diff) | |
download | CMake-3ed275bbb61167d07f6ee2d6cbbcf61cd4d1fca0.zip CMake-3ed275bbb61167d07f6ee2d6cbbcf61cd4d1fca0.tar.gz CMake-3ed275bbb61167d07f6ee2d6cbbcf61cd4d1fca0.tar.bz2 |
CPack/WiX: Fix installer status text
Previously, installers displayed extra text on some Windows versions:
File: [1], Directory: [9], Size [6]
Add an option to our WiX templates to suppress that.
Fixes: #25634
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/Release/WiX/WIX.template.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Utilities/Release/WiX/WIX.template.in b/Utilities/Release/WiX/WIX.template.in index 8abf9d8..1f8953b 100644 --- a/Utilities/Release/WiX/WIX.template.in +++ b/Utilities/Release/WiX/WIX.template.in @@ -52,6 +52,7 @@ </FeatureRef> <UIRef Id="$(var.CPACK_WIX_UI_REF)" /> + <UIRef Id="WixUI_ErrorProgressText" /> <?include "properties.wxi"?> <?include "product_fragment.wxi"?> |