aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorM.Gergő2020-05-20 00:20:53 +0200
committerM.Gergő2020-05-20 00:20:53 +0200
commitee15e1da29eea49057ea3b87ac861e6a2f1fea96 (patch)
treeb508bd3ac8a8143fa9a8d9c5e4ebc16358c9c021 /.vscode
parent2ad766df8f2bd45b7c0feff2fe19fc5f67b80842 (diff)
downloadlightconfini-ee15e1da29eea49057ea3b87ac861e6a2f1fea96.tar.gz
lightconfini-ee15e1da29eea49057ea3b87ac861e6a2f1fea96.zip
New function: lciniReadOutOwn() + Clarifying numeric types
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..b2dcc1f
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,27 @@
+{
+ // 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": "(gdb) Launch",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "${workspaceFolder}/bin/lightconfini",
+ "args": [],
+ "stopAtEntry": false,
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "MIMode": "gdb",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for gdb",
+ "text": "-enable-pretty-printing",
+ "ignoreFailures": true
+ }
+ ]
+ }
+ ]
+} \ No newline at end of file