Changes
3 changed files (+35/-1)
-
.vscode (deleted)
-
@@ -1,1 +0,0 @@/home/ta180m/.vscode
-
-
.vscode/launch.json (new)
-
@@ -0,0 +1,18 @@{ // 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": "Debug", "type": "gdb", "request": "launch", "target": "${fileDirname}/${fileBasenameNoExtension}", "cwd": "${workspaceRoot}", "arguments": "< in > out", "valuesFormatting": "prettyPrinters", "preLaunchTask": "g++ build active file", } ] }
-
-
.vscode/tasks.json (new)
-
@@ -0,0 +1,17 @@{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "type": "shell", "label": "g++ build active file", "command": "g++", "args": ["${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}", "-g3", "-fcompare-debug-second"], "group": { "kind": "build", "isDefault": true } } ] }
-