do not store .vscode
This commit is contained in:
parent
ceb1241735
commit
f22a89aefd
3 changed files with 0 additions and 86 deletions
28
.vscode/launch.json
vendored
28
.vscode/launch.json
vendored
|
@ -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.jpg"],
|
|
||||||
"stopAtEntry": false,
|
|
||||||
"cwd": "${workspaceFolder}",
|
|
||||||
"environment": [],
|
|
||||||
"externalConsole": false,
|
|
||||||
"MIMode": "gdb",
|
|
||||||
"setupCommands": [
|
|
||||||
{
|
|
||||||
"description": "Enable pretty-printing for gdb",
|
|
||||||
"text": "-enable-pretty-printing",
|
|
||||||
"ignoreFailures": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
]
|
|
||||||
}
|
|
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"files.associations": {
|
|
||||||
"*.idl": "cpp"
|
|
||||||
},
|
|
||||||
"C_Cpp.errorSquiggles": "Enabled"
|
|
||||||
}
|
|
52
.vscode/tasks.json
vendored
52
.vscode/tasks.json
vendored
|
@ -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"]
|
|
||||||
},
|
|
||||||
]
|
|
||||||
}
|
|
Loading…
Reference in a new issue