Skip to content

Instantly share code, notes, and snippets.

@djromero
Last active October 22, 2022 10:41
Show Gist options
  • Save djromero/67821fef6b672919a764498701b2ff57 to your computer and use it in GitHub Desktop.
Save djromero/67821fef6b672919a764498701b2ff57 to your computer and use it in GitHub Desktop.
launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "C/C++: clang++ build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "lldb",
"preLaunchTask": "C/C++: clang++ build active file"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment