diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000000000000000000000000000000000000..b6bb7b1cdc2303deb5907d5ab0b818f2934b7770 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,39 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "shell", + "label": "Make", + "command": "/usr/bin/make", + "args": [ + ], + "options": { + "cwd": "${workspaceFolder}" + }, + "problemMatcher": [ + "$gcc" + ], + "group": "build" + }, + { + "type": "shell", + "label": "C/C++: cl.exe build active file", + "command": "cl.exe", + "args": [ + "/std:c++17", + "/Zi", + "/EHsc", + "/Fe:", + "${fileDirname}\\${fileBasenameNoExtension}.exe", + "${file}" + ], + "options": { + "cwd": "${workspaceFolder}" + }, + "problemMatcher": [ + "$msCompile" + ], + "group": "build" + } + ] +} \ No newline at end of file