mirror of
https://github.com/containers/podman.git
synced 2025-10-18 03:33:32 +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>
12 lines
408 B
XML
12 lines
408 B
XML
<Project Sdk="WixToolset.Sdk/5.0.2">
|
|
<PropertyGroup>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<OutputType>Bundle</OutputType>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="WixToolset.BootstrapperApplications.wixext" Version="5.0.2" />
|
|
<PackageReference Include="WixToolset.Util.wixext" Version="5.0.2" />
|
|
<Compile Include="burn.wxs" />
|
|
</ItemGroup>
|
|
</Project>
|