neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

CMakePresets.json (536B)


      1 {
      2  "version": 3,
      3  "configurePresets": [
      4    {
      5      "name": "base",
      6      "generator": "Ninja",
      7      "binaryDir": "${sourceDir}/../.deps",
      8      "hidden": true
      9    },
     10    {
     11      "name": "ci",
     12      "inherits": ["base"]
     13    },
     14    {
     15      "name": "external_deps",
     16      "description": "Build neovim with external deps on ubuntu",
     17      "cacheVariables": {
     18        "USE_BUNDLED":"OFF",
     19        "USE_BUNDLED_TS":"ON",
     20        "USE_BUNDLED_UTF8PROC":"ON",
     21        "ENABLE_WASMTIME":"OFF"
     22      },
     23      "inherits": ["base"]
     24    }
     25  ]
     26 }