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

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

@@ -0,0 +1,33 @@
{
"version": 4,
"configurations": [
{
"name": "Cygwin",
"compilerPath": "C:/cygwin64/bin/g++.exe",
"intelliSenseMode": "linux-gcc-x64",
"cppStandard": "c++17",
"cStandard": "c17",
"includePath": [
"${workspaceFolder}",
"C:/cygwin64/usr/lib/gcc/x86_64-pc-cygwin/13/include/c++",
"C:/cygwin64/usr/lib/gcc/x86_64-pc-cygwin/13/include/c++/x86_64-pc-cygwin",
"C:/cygwin64/usr/lib/gcc/x86_64-pc-cygwin/13/include/c++/backward",
"C:/cygwin64/usr/lib/gcc/x86_64-pc-cygwin/13/include",
"C:/cygwin64/usr/include",
"C:/cygwin64/usr/include/w32api"
],
"browse": {
"path": [
"${workspaceFolder}",
"C:/cygwin64/usr/lib/gcc/x86_64-pc-cygwin/13/include/c++",
"C:/cygwin64/usr/lib/gcc/x86_64-pc-cygwin/13/include/c++/x86_64-pc-cygwin",
"C:/cygwin64/usr/lib/gcc/x86_64-pc-cygwin/13/include/c++/backward",
"C:/cygwin64/usr/lib/gcc/x86_64-pc-cygwin/13/include",
"C:/cygwin64/usr/include",
"C:/cygwin64/usr/include/w32api"
],
"limitSymbolsToIncludedHeaders": true
}
}
]
}

5
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"recommendations": [
"ms-vscode.cpptools"
]
}

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

@@ -0,0 +1,49 @@
{
// 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": "/cygdrive/c/Users/rexfu/Projekte/WebServer/webserver.exe",
"args": [],
"stopAtEntry": false,
"cwd": "/cygdrive/c/Users/rexfu/Projekte/WebServer",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"pipeTransport": {
"pipeProgram": "C:/cygwin64/bin/bash.exe",
"pipeArgs": [
"-lc"
],
"debuggerPath": "/usr/bin/gdb"
},
"sourceFileMap": {
"/cygdrive/c/Users/rexfu/Projekte/WebServer": "${workspaceFolder}"
},
"logging": {
"engineLogging": false,
"trace": false,
"traceResponse": false
},
"preLaunchTask": "C++ Build",
"setupCommands": [
{
"description": "Automatische Strukturierung und Einrückung für gdb aktivieren",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Disassemblierungsvariante auf Intel festlegen",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}

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"]
}
]
}