From 9c1c7443d93a4f2858f57592632eb90f7163333b Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Wed, 10 Apr 2019 14:59:40 -0700 Subject: [PATCH] Mark components as 64-bit --- builders/windows-builder.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/builders/windows-builder.py b/builders/windows-builder.py index 4ba2e8b..cb5b9fa 100644 --- a/builders/windows-builder.py +++ b/builders/windows-builder.py @@ -158,9 +158,10 @@ class WindowsBuilder(Builder): component_id = 'cmp_{source_id}'.format(source_id=source_id) if self.arch == 'x64': file_ = E.File(Id=file_id, KeyPath="yes", Source=source, ProcessorArchitecture='x64') + component = E.Component(file_, Id=component_id, Guid='*', Win64='yes') else: file_ = E.File(Id=file_id, KeyPath="yes", Source=source) - component = E.Component(file_, Id=component_id, Guid='*') + component = E.Component(file_, Id=component_id, Guid='*') element.append(component) components.append(component)