Ertser Commit

This commit is contained in:
2026-02-25 17:10:36 +01:00
commit c84df3426b
7 changed files with 320 additions and 0 deletions

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

@@ -0,0 +1,26 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "C++ Build",
"type": "shell",
"command": "C:/cygwin64/bin/bash.exe",
"args": [
"-lc",
"cd \"$(cygpath -u \"$WORKSPACE_FOLDER\")\"; g++ -std=c++17 -g -o webserver.exe webserver.cpp"
],
"options": {
"cwd": "${workspaceFolder}",
"env": {
"WORKSPACE_FOLDER": "${workspaceFolder}"
}
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$gcc"]
}
]
}