Setup initial qt plugin demo

This commit is contained in:
2025-03-07 11:02:41 +01:00
parent 72e499c7d0
commit 7121fdd252
60 changed files with 2104 additions and 0 deletions

17
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
// 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": "C++ Debugger",
"request": "launch",
"type": "cppdbg",
"miDebuggerServerAddress": "localhost:3000",
"miDebuggerPath": "/usr/bin/gdb",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/install/mg_navigation/lib/mg_navigation/mg_nav_server"
}
]
}