Files
clice/.vscode/launch.json
2024-10-20 22:29:01 +08:00

53 lines
1.6 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"
},
{
"type": "lldb",
"request": "attach",
"name": "clice_attach",
"program": "clice"
},
{
"type": "lldb",
"request": "launch",
"name": "PCM",
"program": "${workspaceFolder}/build/bin/clice-tests",
"args": [
"--test-dir=/home/ykiko/C++/clice2/tests",
"--gtest_filter=clice.PCM"
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "TemplateResolver",
"program": "${workspaceFolder}/build/bin/clice-tests",
"args": [
"--test-dir=/home/ykiko/C++/clice2/tests",
"--gtest_filter=clice.TemplateResolver"
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Index",
"program": "${workspaceFolder}/build/bin/clice-tests",
"args": [
"--test-dir=/home/ykiko/C++/clice2/tests",
"--gtest_filter=clice.Index"
],
"cwd": "${workspaceFolder}"
}
]
}