27 lines
688 B
JSON
27 lines
688 B
JSON
{
|
|
"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"]
|
|
}
|
|
]
|
|
}
|
|
|