diff options
author | Ta180m | 2020-05-11 21:04:12 -0500 |
---|---|---|
committer | Ta180m | 2020-05-11 21:04:12 -0500 |
commit | 06d7db53c797b7989696c95e8d6fdf300c5cce4b (patch) | |
tree | 861ca4701b8ccc035ca10d86b8a41ff194890c62 | |
parent | 6760ebf14ea39ff9dec78b6958b0de80e102d339 (diff) |
Initial commit part 2
-rw-r--r-- | .vscode/c_cpp_properties.json | 16 | ||||
-rw-r--r-- | .vscode/launch.json | 26 | ||||
-rw-r--r-- | .vscode/pattern | bin | 0 -> 325344 bytes | |||
-rw-r--r-- | .vscode/tasks.json | 27 | ||||
-rw-r--r-- | in | 0 |
5 files changed, 69 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..6eedd0d --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,16 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [], + "cStandard": "c11", + "cppStandard": "c++17", + "intelliSenseMode": "gcc-x64", + "compilerPath": "/usr/bin/g++" + } + ], + "version": 4 +}
\ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..a264e34 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "g++ build and debug active file", + "type": "cppdbg", + "request": "launch", + "program": "${fileDirname}/.vscode/${fileBasenameNoExtension}", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ], + "preLaunchTask": "g++ build active file", + "miDebuggerPath": "/usr/bin/gdb" + } + ] + }
\ No newline at end of file diff --git a/.vscode/pattern b/.vscode/pattern Binary files differnew file mode 100644 index 0000000..26da68f --- /dev/null +++ b/.vscode/pattern diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..c79e9ba --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,27 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "shell", + "label": "g++ build active file", + "command": "/usr/bin/g++", + "args": [ + "-g", + "${file}", + "-std=c++17", + "-o", + "${fileDirname}/.vscode/${fileBasenameNoExtension}" + ], + "options": { + "cwd": "/usr/bin" + }, + "problemMatcher": [ + "$gcc" + ], + "group": { + "kind": "build", + "isDefault": true + } + } + ] + }
\ No newline at end of file |