COMPASSi/trunk/code/.vscode/launch.json

17 lines
505 B
JSON
Raw Normal View History

2025-06-25 15:06:42 +08:00
//A launch.json file is used to configure the debugger in Visual Studio Code.
{
"version": "0.2.0",
"configurations": [
{
"name": "(vs)debug",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/Release/COMPASSi.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"preLaunchTask": "cmake build release",
}
]
}