Advertisement
GregLeblanc

tasks.json

Feb 15th, 2025 (edited)
126
0
358 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.09 KB | None | 0 0
  1. {
  2.     "tasks": [
  3.         {
  4.             "type": "cppbuild",
  5.             "label": "C/C++: clang++ build active file",
  6.             "command": "/usr/bin/clang++",
  7.             "args": [
  8.                 "-fcolor-diagnostics",
  9.                 "-fansi-escape-codes",
  10.                 "-g",
  11.                 "${file}",
  12.                 "-o",
  13.                 "${fileDirname}/${fileBasenameNoExtension}",
  14.                 "root-config --cflags"
  15.                 // "--include-directory=/opt/homebrew/Cellar/root/6.32.08/include/root",
  16.                 // "-stdlib=libc++",
  17.                 // "-pthread",
  18.                 // "-std=c++17",
  19.                 // "-m64",
  20.                 // "-I/opt/homebrew/Cellar/root/6.32.08/include/root"
  21.             ],
  22.             "options": {
  23.                 "cwd": "${fileDirname}"
  24.             },
  25.             "problemMatcher": [
  26.                 "$gcc"
  27.             ],
  28.             "group": {
  29.                 "kind": "build",
  30.                 "isDefault": true
  31.             },
  32.             "detail": "Task generated by Debugger."
  33.         }
  34.     ],
  35.     "version": "2.0.0"
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement