mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
664f2749e6
`cmake --preset ci` is equivalent to `cmake -B build -G Ninja -D CI_BUILD=ON` Also remove build presets as they're not very useful without workflow presets, which are only available in schema versions 6 and above.
55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"version": 3,
|
|
"configurePresets": [
|
|
{
|
|
"name": "base",
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build",
|
|
"hidden": true
|
|
},
|
|
{
|
|
"name": "default",
|
|
"displayName": "RelWithDebInfo",
|
|
"description": "Enables optimizations (-Og or -O2) with debug information",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
|
|
},
|
|
"inherits": ["base"]
|
|
},
|
|
{
|
|
"name": "debug",
|
|
"displayName": "Debug",
|
|
"description": "Disables optimizations (-O0), enables debug information",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
},
|
|
"inherits": ["base"]
|
|
},
|
|
{
|
|
"name": "release",
|
|
"displayName": "Release",
|
|
"description": "Same as RelWithDebInfo, but disables debug information",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Release"
|
|
},
|
|
"inherits": ["base"]
|
|
},
|
|
{
|
|
"name": "iwyu",
|
|
"displayName": "IWYU",
|
|
"description": "Run include-what-you-use",
|
|
"cacheVariables": {
|
|
"ENABLE_IWYU": "ON"
|
|
},
|
|
"inherits": ["base"]
|
|
},
|
|
{
|
|
"name": "ci",
|
|
"cacheVariables": {
|
|
"CI_BUILD": "ON"
|
|
},
|
|
"inherits": ["base"]
|
|
}
|
|
]
|
|
}
|