2022-08-19 19:52:57 +02:00
|
|
|
{
|
|
|
|
// 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": [
|
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Debug",
|
|
|
|
"program": "${workspaceFolder}/build/bolt",
|
2023-06-12 22:00:46 +02:00
|
|
|
"args": [ "--direct-diagnostics", "check", "test.bolt" ],
|
2022-08-19 19:52:57 +02:00
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"preLaunchTask": "CMake: build"
|
|
|
|
}
|
|
|
|
]
|
2023-05-20 23:48:26 +02:00
|
|
|
}
|