Skip to content

Instantly share code, notes, and snippets.

@oory33
Created July 27, 2022 18:22
Show Gist options
  • Save oory33/f00c79952fa4ae9cbb3c64c3887972c4 to your computer and use it in GitHub Desktop.
Save oory33/f00c79952fa4ae9cbb3c64c3887972c4 to your computer and use it in GitHub Desktop.
{
"configurations": [
{
"name": "C/C++: clang++ build and debug",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb",
"preLaunchTask": "C/C++: clang++ アクティブなファイルのビルド"
},
{
"name": "C/C++: g++ build and debug",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb",
"preLaunchTask": "C/C++: g++ アクティブなファイルのビルド"
}
],
"version": "2.0.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment