Configure debugging

This commit is contained in:
Abdelrahman Said 2023-06-17 15:26:30 +01:00
parent aacadcb5f5
commit 94398935e8
2 changed files with 7 additions and 4 deletions

8
.vscode/launch.json vendored
View File

@ -5,16 +5,16 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "fsm", "name": "Debug main",
"type": "cppdbg", "type": "cppdbg",
"request": "launch", "request": "launch",
"program": "${workspaceFolder}/fsm", "program": "${workspaceFolder}/main",
"args": [], "args": [],
"stopAtEntry": false, "stopAtEntry": false,
"cwd": "${fileDirname}", "cwd": "${workspaceFolder}",
"environment": [], "environment": [],
"externalConsole": false, "externalConsole": false,
"MIMode": "lldb" "MIMode": "gdb"
} }
] ]
} }

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"cmake.configureOnOpen": false
}