Todo-C/.vscode-example/launch.json
2025-05-13 23:14:45 +00:00

23 lines
690 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"cwd": "${workspaceRoot}",
"type": "cppvsdbg",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/build/meson-src/main.exe",
"preLaunchTask": "build",
"logging": {
"engineLogging": true,
"trace": true,
"traceResponse": true
}
}
]
}