Files
clice/.vscode/launch.json
2024-10-14 19:26:51 +08:00

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