mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
66360675cf
Allow Include What You Use to remove unnecessary includes and only include what is necessary. This helps with reducing compilation times and makes it easier to visualise which dependencies are actually required. Work on https://github.com/neovim/neovim/issues/549, but doesn't close it since this only works fully for .c files and not headers.
111 lines
2.4 KiB
JSON
111 lines
2.4 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": "windows-default",
|
|
"displayName": "Windows x64 RelWithDebInfo",
|
|
"description": "Sets Ninja generator, enables optimizations with debug information for x64",
|
|
"generator": "Ninja",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
|
|
},
|
|
"architecture": {
|
|
"value": "x64",
|
|
"strategy": "external"
|
|
},
|
|
"vendor": {
|
|
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
|
"hostOS": [
|
|
"Windows"
|
|
]
|
|
}
|
|
},
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Windows"
|
|
},
|
|
"inherits": [
|
|
"base"
|
|
]
|
|
},
|
|
{
|
|
"name": "iwyu",
|
|
"displayName": "IWYU",
|
|
"description": "Run include-what-you-use with the compiler",
|
|
"cacheVariables": {
|
|
"ENABLE_IWYU": "ON"
|
|
},
|
|
"inherits": [
|
|
"base"
|
|
]
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "default",
|
|
"configurePreset": "default"
|
|
},
|
|
{
|
|
"name": "debug",
|
|
"configurePreset": "debug"
|
|
},
|
|
{
|
|
"name": "release",
|
|
"configurePreset": "release"
|
|
},
|
|
{
|
|
"name": "windows-default",
|
|
"configurePreset": "windows-default",
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Windows"
|
|
}
|
|
},
|
|
{
|
|
"name": "iwyu",
|
|
"configurePreset": "iwyu"
|
|
}
|
|
]
|
|
}
|