mirror of
https://github.com/neovim/neovim.git
synced 2025-12-25 07:39:11 +00:00
Problem:
Dirs "config", "packaging", and "third-party" are all closely related
but this is not obvious from the layout. This adds friction for new
contributors.
Solution:
- rename config/ to cmake.config/
- rename test/config/ to test/cmakeconfig/ because it is used in Lua
tests: require('test.cmakeconfig.paths').
- rename packaging/ to cmake.packaging/
- rename third-party/ to cmake.deps/ (parallel with .deps/)
15 lines
383 B
XML
15 lines
383 B
XML
<CPackWiXPatch>
|
|
<!-- Fragment ID is from: <your build dir>/_CPack_Packages/win64/WIX/files.wxs -->
|
|
<CPackWiXFragment Id="CM_CP_bin.nvim.exe">
|
|
<Environment
|
|
Id='UpdatePath'
|
|
Name='PATH'
|
|
Action='set'
|
|
Permanent='no'
|
|
System='yes'
|
|
Part='last'
|
|
Value='[INSTALL_ROOT]bin'
|
|
/>
|
|
</CPackWiXFragment>
|
|
</CPackWiXPatch>
|