From f56f0358c11f01308a3de87fb7f7e854ca1efb71 Mon Sep 17 00:00:00 2001 From: jrockwar <31840085+jrockwar@users.noreply.github.com> Date: Thu, 18 Aug 2022 15:48:48 +0100 Subject: [PATCH] enable installation on arm64 processors on windows (#6481) --- UpdateInfo.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UpdateInfo.cmake b/UpdateInfo.cmake index 473c68364..b0c2bdff6 100644 --- a/UpdateInfo.cmake +++ b/UpdateInfo.cmake @@ -106,9 +106,9 @@ if(WIN32) elseif(BIT_DEPTH EQUAL 8) set(BUILD_BIT_DEPTH 64) # Restricting the 64 bits builds to 64 bits systems only - set(ARCHITECTURE_ALLOWED "x64 ia64") + set(ARCHITECTURE_ALLOWED "x64 ia64 arm64") # installing in 64 bits mode for all 64 bits processors, even for itanium architecture - set(INSTALL_MODE "x64 ia64") + set(INSTALL_MODE "x64 ia64 arm64") endif() # set part of the output archive name set(SYSTEM_NAME "WinVista")