27 lines
591 B
JSON
27 lines
591 B
JSON
{
|
|
"version": 3,
|
|
"configurePresets": [
|
|
{
|
|
"name": "dev",
|
|
"displayName": "Linux Development",
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build",
|
|
"cacheVariables": {
|
|
"CMAKE_C_COMPILER": "clang",
|
|
|
|
"CMAKE_BUILD_TYPE": "DEBUG",
|
|
"CMAKE_EXPORT_COMPILE_COMMANDS": true,
|
|
|
|
"EVENT__ENABLE_VERBOSE_DEBUG": true
|
|
}
|
|
}
|
|
],
|
|
|
|
"buildPresets": [
|
|
{
|
|
"name": "debug",
|
|
"configurePreset": "dev"
|
|
}
|
|
]
|
|
}
|