Files
clice/.vscode/launch.json
2024-11-29 20:11:16 +08:00

44 lines
1.3 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": "Debug",
"program": "${workspaceFolder}/build/bin/clice",
"args": [
"--config=${workspaceFolder}/docs/clice.toml"
]
},
{
"type": "lldb",
"request": "launch",
"name": "Release",
"program": "${workspaceFolder}/build-release/bin/clice",
"args": [
"--config=${workspaceFolder}/docs/clice.toml"
]
},
{
"type": "lldb",
"request": "launch",
"name": "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": ""
}
]
}