mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
96b461a000
- Removed NSIS installer. - Prevents undefined behaviour when two installations are performed to the same directory (NSIS + MSI). - Reduced cost of maintaining two installers that do the same thing. - Chose Wix MSI due to its better integration with Windows. - Added Wix patch file to add neovim binaries to the system path during installation. - Replaced neovim installer icons with better looking versions. - Renamed neovim installer icons from logo.ico -> neovim.ico for all icons to better reflect contents.
17 lines
538 B
XML
17 lines
538 B
XML
<CPackWiXPatch>
|
|
<!-- Fragment ID is from: <your build dir>/_CPack_Packages/win64/WIX/files.wxs -->
|
|
<CPackWiXFragment Id="CM_CP_bin.nvim.exe">
|
|
<!-- Note: if we were to specify Value='[INSTALL_ROOT]\bin' - with a backslash, the installer will still
|
|
use a forward slash in the path. -->
|
|
<Environment
|
|
Id='UpdatePath'
|
|
Name='PATH'
|
|
Action='set'
|
|
Permanent='no'
|
|
System='yes'
|
|
Part='last'
|
|
Value='[INSTALL_ROOT]/bin'
|
|
/>
|
|
</CPackWiXFragment>
|
|
</CPackWiXPatch>
|