2023-04-12 14:29:56 +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": [
|
|
|
|
{
|
2024-04-08 20:08:15 +02:00
|
|
|
"type": "lldb",
|
2023-04-12 14:29:56 +02:00
|
|
|
"request": "launch",
|
2024-04-08 20:08:15 +02:00
|
|
|
"name": "Debug",
|
|
|
|
"program": "${workspaceFolder}/build/bolt",
|
|
|
|
"args": [ "--direct-diagnostics", "verify", "${workspaceFolder}/test.bolt" ],
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"preLaunchTask": "CMake: build"
|
2023-04-12 14:29:56 +02:00
|
|
|
}
|
|
|
|
]
|
2024-04-08 20:08:15 +02:00
|
|
|
}
|