Remove .vscode folder

This commit is contained in:
Marco 2023-12-27 22:25:12 +01:00
parent 91ace50878
commit 393d62561f
4 changed files with 0 additions and 67 deletions

View File

@ -1,22 +0,0 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"/usr/include/**",
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c17",
"intelliSenseMode": "linux-gcc-x64",
"browse": {
"path": [
"/usr/include/**",
"${workspaceFolder}/**"
]
}
}
],
"version": 4
}

28
.vscode/launch.json vendored
View File

@ -1,28 +0,0 @@
{
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/inverter",
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"preLaunchTask": "build",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}

View File

@ -1,5 +0,0 @@
{
"files.associations": {
"time.h": "c"
}
}

12
.vscode/tasks.json vendored
View File

@ -1,12 +0,0 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "build",
"command": "make",
"group": "build",
"detail": "compiler: /usr/bin/gcc"
}
]
}