Skip to content
Snippets Groups Projects
Commit 840c29fd authored by Steve Lhomme's avatar Steve Lhomme
Browse files

package/win32: install arm64 binaries in Program Files from the MSI package

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

Fixes #28886
parent 18f4f954
No related branches found
No related tags found
1 merge request!6424package/win32: install arm64 binaries in Program Files from the MSI package
Pipeline #539398 passed with stages
in 35 minutes and 7 seconds
......@@ -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" ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment