GitBucket
Pull requests
Issues
Snippets
Sign in
takane
/
tasks.json
Fork
0
Created at Thu Jan 15 12:20:53 JST 2026
Download ZIP
HTTP
Embed
Embed this snippet in your website.
HTTP
Clone with Git using the repository's web address.
Code
Revision
Forks
takane
revised this
on 15 Jan
3da2bbd
launch.json
{ "version": "0.2.0", "configurations": [ { "name": "Debug (Clang/LLDB)", "type": "cppdbg", "request": "launch", "program": "${fileDirname}/${fileBasenameNoExtension}", "args": [], "cwd": "${fileDirname}", "externalConsole": true, "osx": { "MIMode": "lldb" }, "setupCommands": [ { "description": "Set charset to UTF-8 for LLDB", "text": "-exec set charset UTF-8", "ignoreFailures": true } ], "preLaunchTask": "C/C++: clang アクティブなファイルのビルド" } ] }
takane
revised this
on 15 Jan
5c6b2c0
tasks.json
{ "tasks": [ { "type": "cppbuild", "label": "C/C++: clang アクティブなファイルのビルド", "command": "/usr/bin/clang", "args": [ "-fcolor-diagnostics", "-fansi-escape-codes", "-g", "${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}" ], "options": { "cwd": "${fileDirname}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true }, "detail": "デバッガーによって生成されたタスク。" } ], "version": "2.0.0" }