Files
clice/.vscode/launch.json
2024-11-26 20:18:40 +08:00

35 lines
1.0 KiB
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": [
{
"type": "lldb",
"request": "launch",
"name": "clice_socket",
"program": "${workspaceFolder}/build/bin/clice",
"args": [
"--config=${workspaceFolder}/docs/clice.toml"
]
},
{
"type": "lldb",
"request": "launch",
"name": "clice_test",
"program": "${workspaceFolder}/build/bin/clice-tests",
"args": [
"--test-dir=${workspaceFolder}/tests",
"${input:filter}"
],
}
],
"inputs": [
{
"id": "filter",
"type": "promptString",
"description": "Filter for test names",
"default": ""
}
]
}