diff options
author | Ladislav Zezula <zezula@volny.cz> | 2023-06-27 09:58:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 09:58:01 +0200 |
commit | 1c80f7e9376bdda6012e6323846cdb568ce0bcf8 (patch) | |
tree | 053668e8e731d6f033ee8460981a4ef6fd571861 /.vscode/launch.json | |
parent | 9b4ed3ddbee345d2b43513b97b9afacd6662c6ca (diff) | |
parent | bf5d6d10c136fefd73d3e02304111b26dc6b19b8 (diff) |
Merge pull request #298 from ladislav-zezula/LZ_VscodeDevelopment
Lz vscode development
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..9da39f0 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,34 @@ +{ + // 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", + "program": "./build/StormLib_test", + "configurations": [ + { + "name": "(gdb) Launch", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/build/StormLib_test", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + }, + { + "description": "Set Disassembly Flavor to Intel", + "text": "-gdb-set disassembly-flavor intel", + "ignoreFailures": true + } + ] + } + + ] +}
\ No newline at end of file |