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

18 lines
573 B
JSON
Raw Permalink 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",
2025-06-26 16:34:18 +08:00
"program": "${workspaceFolder}/bin/Debug/COMPASSi.exe",
2025-06-25 15:06:42 +08:00
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
2025-06-26 16:34:18 +08:00
"preLaunchTask": "cmake build debug",
"visualizerFile": "${workspaceFolder}/bin/Debug/qt.natvis",
2025-06-25 15:06:42 +08:00
}
]
}