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

29 lines
1,018 B
JSON
Raw Normal View History

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