17 lines
No EOL
527 B
JSON
17 lines
No EOL
527 B
JSON
{
|
|
"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"
|
|
}
|
|
]
|
|
} |