voice-chat/CMakePresets.json

27 lines
591 B
JSON
Raw Permalink Normal View History

2026-01-14 22:33:58 -05:00
{
"version": 3,
"configurePresets": [
{
"name": "dev",
"displayName": "Linux Development",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
2026-01-16 15:31:50 -05:00
"CMAKE_C_COMPILER": "clang",
2026-01-14 22:33:58 -05:00
"CMAKE_BUILD_TYPE": "DEBUG",
2026-01-16 15:31:50 -05:00
"CMAKE_EXPORT_COMPILE_COMMANDS": true,
"EVENT__ENABLE_VERBOSE_DEBUG": true
2026-01-14 22:33:58 -05:00
}
}
],
"buildPresets": [
{
"name": "debug",
"configurePreset": "dev"
}
]
}