summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorLadislav Zezula <Ladislav Zezula>2023-06-27 09:50:29 +0200
committerLadislav Zezula <Ladislav Zezula>2023-06-27 09:50:29 +0200
commitf51ee604991743b2eb4a61bc200843d7191d48e7 (patch)
treee9065084d90af06fb73d3714c758cbd9da9e71f3 /.vscode/launch.json
parentea776a2a9fd88df4c9335feadd19e4c310f78826 (diff)
Added missing files
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..229422d
--- /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/storm_test",
+ "configurations": [
+ {
+ "name": "(gdb) Launch",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "${workspaceFolder}/build/storm_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