[vlc-commits] [Git][videolan/vlc][master] package/win32: install arm64 binaries in Program Files from the MSI package

Steve Lhomme (@robUx4) gitlab at videolan.org
Thu Nov 28 15:15:14 UTC 2024



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
840c29fd by Steve Lhomme at 2024-11-28T14:46:50+00:00
package/win32: install arm64 binaries in Program Files from the MSI package

Instead of defaulting to "Program Files (x86)".

Fixes #28886

- - - - -


1 changed file:

- extras/package/win32/msi/config.wxi.in


Changes:

=====================================
extras/package/win32/msi/config.wxi.in
=====================================
@@ -18,14 +18,14 @@
 
     <?define Platform= "@WINDOWS_ARCH@" ?>
 
-    <?if $(var.Platform) = "x64" ?>
-        <?define Win64 = "yes" ?>
-        <?define PlatformString = "64-bit"?>
-        <?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?>
-    <?else ?>
+    <?if $(var.Platform) = "x86" ?>
         <?define Win64 = "no" ?>
         <?define PlatformString = "32-bit"?>
         <?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?>
+    <?else ?>
+        <?define Win64 = "yes" ?>
+        <?define PlatformString = "64-bit"?>
+        <?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?>
     <?endif ?>
 
     <?define AppFolder = "VLC" ?>



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/840c29fd7dd7781bc890ea48e331c65b18ba3a4b

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/840c29fd7dd7781bc890ea48e331c65b18ba3a4b
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list