vscode: add VSCode IDE integration

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1386>
This commit is contained in:
Andoni Morales Alastruey 2021-11-17 10:55:25 +00:00 committed by GStreamer Marge Bot
parent e890e6e8d8
commit 083da950f4
2 changed files with 57 additions and 0 deletions

5
.gitignore vendored
View file

@ -61,3 +61,8 @@ subprojects/*/
!subprojects/win-flex-bison-binaries
!subprojects/win-nasm
!subprojects/packagefiles
# VSCode integration
# launch.json will be modified by users depending on the pipeline to test
# We keep these files in the ignore list so they do not appear as modified
.vscode/*

52
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,52 @@
{
// 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": [
{
"name": "GStreamer - Build and debug",
"request": "launch",
"type": "cppdbg",
"windows": {
"type": "cppvsdbg",
"program": "gst-launch-1.0.exe",
},
"osx": {
// https://github.com/microsoft/vscode-cpptools/issues/8411
"MIMode": "lldb",
},
"linux": {
"MIMode": "gdb"
},
"envFile": "${workspaceFolder}/${config:mesonbuild.buildFolder}/meson-vscode.env",
"cwd": "${workspaceFolder}/${config:mesonbuild.buildFolder}/subprojects/gstreamer/tools/",
"program": "${workspaceFolder}/${config:mesonbuild.buildFolder}/subprojects/gstreamer/tools/gst-launch-1.0",
"args": [
"videotestsrc",
"!",
"autovideosink"
],
"environment": [
{
"name": "GST_DEBUG",
"value": "4"
},
],
"stopAtEntry": false,
"preLaunchTask": "Meson: Build all targets",
"symbolOptions": {
"searchPaths": [
"${workspaceFolder}/${config:mesonbuild.buildFolder}",
],
"searchMicrosoftSymbolServer": true,
"cachePath": "${workspaceFolder}\\${config:mesonbuild.buildFolder}\\cache",
"moduleFilter": {
"mode": "loadAllButExcluded",
"excludedModules": []
}
}
}
]
}