mirror of
https://github.com/ossrs/srs.git
synced 2025-11-23 19:34:05 +08:00
This PR renames the trunk/ide/ directory to trunk/cmake/ to better reflect its actual purpose. The directory contains CMake build configuration files used by multiple IDEs (CLion, VSCode), not IDE-specific files. * Directory rename: trunk/ide/ → trunk/cmake/ * Build output location: trunk/ide/vscode-build/ → trunk/cmake/build/ * CMakeLists.txt: Moved from trunk/ide/srs_clion/CMakeLists.txt to trunk/cmake/CMakeLists.txt
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch SRS",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/trunk/cmake/build/srs",
|
|
"args": ["-c", "conf/console.conf"],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}/trunk",
|
|
"environment": [],
|
|
"externalConsole": false,
|
|
"linux": {
|
|
"MIMode": "gdb"
|
|
},
|
|
"osx": {
|
|
"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"
|
|
}
|
|
]
|
|
} |