This repository has been archived on 2025-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
helpless/.vscode/launch.json

17 lines
527 B
JSON
Raw Normal View History

2024-07-04 09:35:03 +07:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch with MSVC Debugger",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/cgame.exe", // Run the output executable after compile
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"console":"integratedTerminal",
// "preLaunchTask": "Compile"
}
]
}