Files
processing4/app/windows/Processing.wxs
Raphaël de Courville 5a5f5402a0 Merge pull request #1136 from jdebou/jdb/path
Adds processing to path on windows.
2025-07-11 12:44:04 +02:00

44 lines
2.2 KiB
XML

<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">
<Package Name="Processing" Manufacturer="Processing Foundation" Version="$(Version)" UpgradeCode="89d8d7fe-5602-4b12-ba10-0fe78efbd602">
<Icon Id="icon.ico" SourceFile="..\..\build\windows\processing.ico" />
<Property Id="ARPPRODUCTICON" Value="icon.ico" />
<MediaTemplate EmbedCab="yes" />
<ui:WixUI Id="WixUI_Mondo" InstallDirectory="INSTALLFOLDER" />
<WixVariable Id="WixUILicenseRtf" Value="LICENSE.rtf" />
<WixVariable Id="WixUIDialogBmp" Value="background.png" />
<WixVariable Id="WixUIBannerBmp" Value="banner.png" />
<Feature Id="MainApplication" Title="Processing" Level="1">
<Files Include="..\build\compose\binaries\main\app\Processing\**" />
<ComponentRef Id="ApplicationShortcut" />
<ComponentRef Id="PathComponent" />
</Feature>
<Directory Id="ProgramMenuFolder">
<Directory Id="ApplicationProgramsFolder" Name="Processing"/>
</Directory>
<Directory Id="ProgramFiles64Folder">
<Directory Id="INSTALLFOLDER" Name="Processing">
</Directory>
</Directory>
<Component Id="ApplicationShortcut" Guid="b15e6d69-f054-4ec2-aade-8e3756b537d6">
<Shortcut Id="ApplicationStartMenuShortcut"
Name="Processing"
Description="Processing — An open-source visual arts programming language by the Processing Foundation"
Directory="ApplicationProgramsFolder"
Target="[INSTALLFOLDER]\Processing.exe"
WorkingDirectory="INSTALLFOLDER"/>
<RemoveFolder Id="CleanUpShortCut" Directory="ApplicationProgramsFolder" On="uninstall"/>
<RegistryValue Root="HKCU" Key="Software\Processing Foundation\Processing" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
</Component>
<Component Id="PathComponent" Guid="795b17d1-6e67-4581-9588-1f80a73c1428">
<Environment Id="AddProcessingToPath"
Action="set"
Name="Path"
Part="last"
Value="[INSTALLFOLDER]">
</Environment>
</Component>
</Package>
</Wix>