//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", } ] }