mirror of
https://github.com/containers/podman.git
synced 2025-10-16 18:53:19 +08:00

Winmake could only build amd64 artifacts (podman-remote, gvproxy, win-sshproxy, podman.msi and podman-setup.exe). This commit makes the necessary change to winmake so that it: 1) builds arm64 artifacts when executed on arm64 2) cross-compiles to arm64/amd64 with the `-architecture` parameter It depends on https://github.com/containers/podman/pull/26023 that removes the need to build `check.c` code (that is not used anyway). Signed-off-by: Mario Loriedo <mario.loriedo@gmail.com>
21 lines
798 B
XML
21 lines
798 B
XML
<Project Sdk="WixToolset.Sdk/5.0.2">
|
|
<PropertyGroup>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<HarvestDirectory Include="docs">
|
|
<ComponentGroupName>ManFiles</ComponentGroupName>
|
|
<DirectoryRefId>INSTALLDIR</DirectoryRefId>
|
|
<SuppressRootDirectory>true</SuppressRootDirectory>
|
|
</HarvestDirectory>
|
|
<BindPath Include="docs" />
|
|
<Compile Include="podman.wxs;podman-ui.wxs;welcome-install-dlg.wxs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="PanelSwWixExtension4" Version="5.4.5.422" />
|
|
<PackageReference Include="WixToolset.Heat" Version="5.0.2" />
|
|
<PackageReference Include="WixToolset.UI.wixext" Version="5.0.2" />
|
|
<PackageReference Include="WixToolset.Util.wixext" Version="5.0.2" />
|
|
</ItemGroup>
|
|
</Project>
|