mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
JSON
36 lines
1.0 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch SRS",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/trunk/ide/vscode-build/srs",
|
|
"args": ["-c", "conf/console.conf"],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}/trunk",
|
|
"environment": [],
|
|
"externalConsole": false,
|
|
"MIMode": "lldb",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
}
|
|
],
|
|
"preLaunchTask": "build",
|
|
"logging": {
|
|
"engineLogging": true
|
|
}
|
|
},
|
|
{
|
|
"name": "Launch srs-proxy",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"cwd": "${workspaceFolder}/proxy",
|
|
"program": "${workspaceFolder}/proxy"
|
|
}
|
|
]
|
|
} |