mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-03-28 15:40:54 +03:00
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
|
|
<Fragment>
|
|
<ComponentGroup Id="LanMouseComponents" Directory="INSTALLFOLDER" Subdirectory="bin">
|
|
<Component Guid="{ECB52D3E-28AD-4BEC-B9DF-E01CCAB356BE}">
|
|
<!-- the main binary -->
|
|
<File Source="..\target\release\lan-mouse.exe"/>
|
|
|
|
<!-- visual c runtime dll -->
|
|
<File Source="C:\windows\system32\VCRUNTIME140.dll"/>
|
|
<File Source="C:\windows\system32\VCRUNTIME140_1.dll"/>
|
|
</Component>
|
|
<!-- start menu entry-->
|
|
<Component Id="ApplicationShortcut" Directory="ApplicationProgramsFolder">
|
|
<Shortcut Id="ApplicationStartMenuShortcut"
|
|
Name="!(bind.Property.ProductName)"
|
|
Description ="Mouse and Keyboard sharing Software"
|
|
Target="[INSTALLFOLDER]bin\lan-mouse.exe"
|
|
WorkingDirectory="INSTALLFOLDER">
|
|
<Icon Id="LanMouse" SourceFile=".\icon.ico"/>
|
|
</Shortcut>
|
|
<RemoveFolder Id="ApplicationProgramsFolder" On="uninstall"/>
|
|
<RegistryValue
|
|
Root="HKCU"
|
|
Key="Software\Feschber\LanMouse"
|
|
Name="installed"
|
|
Type="integer"
|
|
Value="1"
|
|
KeyPath="yes"/>
|
|
</Component>
|
|
</ComponentGroup>
|
|
</Fragment>
|
|
</Wix>
|