This commit is contained in:
2020-04-29 20:23:53 +02:00
parent 6c25e58518
commit 480ab7250a
5 changed files with 35 additions and 4 deletions

16
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}

2
.vscode/launch.json vendored
View File

@@ -9,7 +9,7 @@
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/AirplayServer",
"args": ["-n", "AirplayLinux"],
"args": ["-n", "AirplayLinux", "-d"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"cmake.configureOnOpen": false
}