Browse Source

deleted .vscode files

pull/4/head
VissaMoutafis 5 years ago
parent
commit
dc886f56f8
  1. 1
      .vscode/.easycpp
  2. 26
      .vscode/launch.json
  3. 6
      .vscode/settings.json
  4. 26
      .vscode/tasks.json

1
.vscode/.easycpp

@ -1 +0,0 @@
This file is created by Easy C++ Projects, please ignore and do not delete it

26
.vscode/launch.json

@ -1,26 +0,0 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "C++ Debug (gdb)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/main",
"preLaunchTask": "Build C++ project",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}

6
.vscode/settings.json

@ -1,6 +0,0 @@
{
"files.associations": {
"*.tpp": "cpp"
},
"terminal.integrated.shell.windows": "cmd.exe"
}

26
.vscode/tasks.json

@ -1,26 +0,0 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build C++ project",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"command": "make",
},
{
"label": "Build & run C++ project",
"type": "shell",
"group": {
"kind": "test",
"isDefault": true
},
"command": "make",
"args": [
"run"
]
}
]
}
Loading…
Cancel
Save