mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
fa79a8ad6d
Problem: Adding support for modern Nvim features (reflow, OSC 8, full utf8/emoji support) requires coupling libvterm to Nvim internals (e.g., utf8proc). Solution: Vendor libvterm at v0.3.3.
26 lines
503 B
JSON
26 lines
503 B
JSON
{
|
|
"version": 3,
|
|
"configurePresets": [
|
|
{
|
|
"name": "base",
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/../.deps",
|
|
"hidden": true
|
|
},
|
|
{
|
|
"name": "ci",
|
|
"inherits": ["base"]
|
|
},
|
|
{
|
|
"name": "external_deps",
|
|
"description": "Build neovim with external deps on ubuntu",
|
|
"cacheVariables": {
|
|
"USE_BUNDLED":"OFF",
|
|
"USE_BUNDLED_TS":"ON",
|
|
"USE_BUNDLED_UTF8PROC":"ON"
|
|
},
|
|
"inherits": ["base"]
|
|
}
|
|
]
|
|
}
|