18 lines
573 B
JSON
18 lines
573 B
JSON
//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/Debug/COMPASSi.exe",
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}",
|
|
"environment": [],
|
|
"preLaunchTask": "cmake build debug",
|
|
"visualizerFile": "${workspaceFolder}/bin/Debug/qt.natvis",
|
|
}
|
|
]
|
|
} |