mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
7b5967d699
Add a temporal fix for https://github.com/microsoft/vscode-cpptools/issues/8411 to support launching applications from macOS. Rather than using the meson-vscode.env, set the few variables required to launch GStreamer uninstalled. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5399>
63 lines
2.1 KiB
JSON
63 lines
2.1 KiB
JSON
{
|
|
// 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",
|
|
"envFile": "${workspaceFolder}/${config:mesonbuild.buildFolder}/meson-vscode.env",
|
|
},
|
|
"osx": {
|
|
"MIMode": "lldb",
|
|
// lldb-mi doesn't support large environment variables: https://github.com/lldb-tools/lldb-mi/pull/87
|
|
"environment": [
|
|
{
|
|
"name": "GST_PLUGIN_PATH",
|
|
"value": "${workspaceFolder}/${config:mesonbuild.buildFolder}/subprojects",
|
|
},
|
|
{
|
|
"name": "GST_PLUGIN_SCANNER",
|
|
"value": "${workspaceFolder}/${config:mesonbuild.buildFolder}/subprojects/gstreamer/libs/gst/helpers/gst-plugin-scanner",
|
|
},
|
|
],
|
|
},
|
|
"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}\\vscode-symbols-cache",
|
|
"moduleFilter": {
|
|
"mode": "loadAllButExcluded",
|
|
"excludedModules": []
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|