This repository has been archived on 2024-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
HomdEngine/.vscode/launch.json

15 lines
301 B
JSON
Raw Permalink Normal View History

2023-05-27 17:44:20 +03:00
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Homd Engine Debug",
"preLaunchTask": "CMake: build",
"program": "${workspaceFolder}/build/HomdEngine",
"args": [],
"cwd": "${workspaceFolder}/build"
}
]
}