diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..189dae7 --- /dev/null +++ b/.vscode/launch.json @@ -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 + } + ] + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..2ea5d32 --- /dev/null +++ b/.vscode/tasks.json @@ -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" + + } + + ] +} \ No newline at end of file