Adds processing to path with Wix.

This commit is contained in:
Joackim de Bourqueney
2025-05-24 21:13:10 +02:00
parent 1ee243c93a
commit 9552d9b47a
+9
View File
@@ -13,6 +13,7 @@
<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"/>
@@ -31,5 +32,13 @@
<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>