Files
clice/.vscode/launch.json
2024-08-30 21:45:55 +08:00

35 lines
1010 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": [
//{
// "type": "lldb",
// "request": "launch",
// "name": "Launch",
// "program": "${workspaceFolder}/build/clice_test",
// "args": [],
// "cwd": "${workspaceFolder}"
//},
{
"type": "lldb",
"request": "launch",
"name": "ASTVisitor",
"program": "${workspaceFolder}/build/bin/clice",
"args": [
"/home/ykiko/C++/clice/test.cpp",
],
"cwd": "${workspaceFolder}"
},
],
"compounds": [
{
"name": "Select and Launch",
"configurations": [
"ASTVisitor",
"Preprocessor"
]
}
]
}