From 06d7db53c797b7989696c95e8d6fdf300c5cce4b Mon Sep 17 00:00:00 2001 From: Ta180m Date: Mon, 11 May 2020 21:04:12 -0500 Subject: Initial commit part 2 --- .vscode/c_cpp_properties.json | 16 ++++++++++++++++ .vscode/launch.json | 26 ++++++++++++++++++++++++++ .vscode/pattern | Bin 0 -> 325344 bytes .vscode/tasks.json | 27 +++++++++++++++++++++++++++ in | 0 5 files changed, 69 insertions(+) create mode 100644 .vscode/c_cpp_properties.json create mode 100644 .vscode/launch.json create mode 100644 .vscode/pattern create mode 100644 .vscode/tasks.json create mode 100644 in 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 new file mode 100644 index 0000000..26da68f Binary files /dev/null and b/.vscode/pattern differ 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 diff --git a/in b/in new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3-70-g09d2