Dateien hochladen nach „.vscode“

This commit is contained in:
julian
2020-04-19 14:39:32 +02:00
parent 38cae97789
commit eec82fd293
2 changed files with 59 additions and 0 deletions

28
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,28 @@
{
// 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) Starten",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/AirplayServer",
"args": ["-n", "AirplayLinux"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"preLaunchTask": "build",
"MIMode": "gdb",
"setupCommands": [
{
"description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}

31
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,31 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "sh",
"args": [
"${workspaceFolder}/build/install.sh"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn":["goNow"]
},
{
"label": "goNow",
"type": "shell",
"command": "cd",
"args": [
"${workspaceFolder}/build"
],
"group": "build"
}
]
}