Remove .vscode files

This commit is contained in:
Jaap Haitsma 2020-05-27 21:38:01 -04:00
parent bff065d88b
commit af9966c986
3 changed files with 0 additions and 86 deletions

28
.vscode/launch.json vendored
View file

@ -1,28 +0,0 @@
{
// 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}/inspect",
"args": ["../../Downloads/img3-3.jpg"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}

View file

@ -1,6 +0,0 @@
{
"files.associations": {
"*.idl": "cpp"
},
"C_Cpp.errorSquiggles": "Enabled"
}

52
.vscode/tasks.json vendored
View file

@ -1,52 +0,0 @@
{
"version": "2.0.0",
"command": "make",
"type": "shell",
"presentation": {
"reveal": "always"
},
// Use the standard less compilation problem matcher.
"problemMatcher": {
"owner": "cpp",
"fileLocation": ["relative", "${workspaceRoot}"],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"tasks": [
{
"label": "Debug build",
"group": {
"kind": "build",
"isDefault": true
},
"options": {
"env": {
"CFLAGS": "-g -Wall -fPIC",
}
},
"args": ["all"],
},
{
"label": "Release build",
"options": {
"env": {
"CFLAGS": "-O3 -Wall -fPIC",
}
},
"args": ["all"]
},
{
"label": "Clean",
"args": ["clean"]
},
]
}