15 lines
398 B
JSON
15 lines
398 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "gdbserver",
|
|
"type": "shell",
|
|
"command": [
|
|
"ssh -t root@192.168.53.14 '/usr/bin/gdbserver :1234",
|
|
"${workspaceFolder}/app'"
|
|
]
|
|
}
|
|
]
|
|
} |