mirror of
https://github.com/guilhermewerner/http
synced 2025-06-16 19:44:18 +00:00
20 lines
549 B
JSON
20 lines
549 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug",
|
|
"type": "cppvsdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/Binaries/debug/HttpServer",
|
|
"windows": {
|
|
"program": "${workspaceFolder}/Binaries/debug/HttpServer.exe",
|
|
},
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}/Binaries/debug",
|
|
"environment": [],
|
|
"console": "externalTerminal"
|
|
}
|
|
]
|
|
}
|