mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-04-09 12:21:28 +03:00
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<Project Sdk="WixToolset.Sdk/5.0.2">
|
|
<PropertyGroup>
|
|
<InstallerPlatform>x64</InstallerPlatform>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="WixToolset.Heat">
|
|
<Version>5.0.2</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<HarvestDirectory Include="C:\gtk-build\gtk\x64\release\bin">
|
|
<ComponentGroupName>GTKBIN</ComponentGroupName>
|
|
<DirectoryRefId>INSTALLFOLDER</DirectoryRefId>
|
|
<SuppressRegistry>true</SuppressRegistry>
|
|
</HarvestDirectory>
|
|
<BindPath Include="C:\gtk-build\gtk\x64\release\bin" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<HarvestDirectory Include="C:\gtk-build\gtk\x64\release\share\icons">
|
|
<ComponentGroupName>GTKICONS</ComponentGroupName>
|
|
<DirectoryRefId>SHARE</DirectoryRefId>
|
|
<SuppressRegistry>true</SuppressRegistry>
|
|
</HarvestDirectory>
|
|
<BindPath Include="C:\gtk-build\gtk\x64\release\share\icons" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<HarvestDirectory Include="C:\gtk-build\gtk\x64\release\lib\gdk-pixbuf-2.0">
|
|
<ComponentGroupName>GTKLIBS</ComponentGroupName>
|
|
<DirectoryRefId>LIB</DirectoryRefId>
|
|
<SuppressRegistry>true</SuppressRegistry>
|
|
</HarvestDirectory>
|
|
<BindPath Include="C:\gtk-build\gtk\x64\release\lib\gdk-pixbuf-2.0" />
|
|
</ItemGroup>
|
|
</Project>
|