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
17 lines
354 B
JSON
17 lines
354 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"type": "shell",
|
|
"command": "cmake --build ${workspaceFolder}/trunk/cmake/build",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": ["$gcc"],
|
|
"detail": "Build SRS by cmake."
|
|
}
|
|
]
|
|
}
|
|
|