ignore vscode files

This commit is contained in:
oltolm 2024-09-18 17:42:56 +02:00
parent 864a4b38aa
commit 01f9927e3d
3 changed files with 2 additions and 39 deletions

2
.gitignore vendored
View File

@ -141,3 +141,5 @@ RAPrefs_PPSSPP.cfg
# For CLion
cmake-build-*/
/.vscode/

16
.vscode/launch.json vendored
View File

@ -1,16 +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": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "build/PPSSPPSDL",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}

23
.vscode/tasks.json vendored
View File

@ -1,23 +0,0 @@
{
"tasks": [
{
"type": "shell",
"label": "C/C++: build",
"command": "./b.sh",
"args": [
"--debug",
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "compiler: /usr/bin/g++"
},
]
}