Files
IAEngine/.vscode/launch.json
Isuru Samarathunga 8afe023901 Fixes
2025-10-10 13:30:29 +05:30

21 lines
708 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/bin/Debug/IAE.exe",
"args": ["new", "-name", "SpaceCase"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/Playground",
"environment": [],
"console": "externalTerminal",
"preLaunchTask": "CMake: build"
}
]
}