1
0
mirror of https://github.com/fumiama/simple-http-server.git synced 2026-06-14 07:20:24 +08:00
Files
simple-http-server/.vscode/launch.json
2026-01-30 23:09:51 +08:00

26 lines
754 B
JSON

{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/simple-http-server",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/build",
"environment": [
{
"name": "DYLD_FALLBACK_LIBRARY_PATH",
"value": "/usr/local/lib"
}
],
"externalConsole": false,
"MIMode": "lldb",
"preLaunchTask": "Build Debug"
}
]
}