123456789101112131415161718192021222324252627 |
- {
- "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",
- "ENABLE_WASMTIME":"OFF"
- },
- "inherits": ["base"]
- }
- ]
- }
|