tasks.json 423 B

12345678910111213141516171819
  1. {
  2. "tasks": [
  3. {
  4. "type": "shell",
  5. "label": "g++ build active file",
  6. "command": "/usr/bin/g++",
  7. "args": [
  8. "-g",
  9. "${file}",
  10. "-o",
  11. "${fileDirname}/${fileBasenameNoExtension}"
  12. ],
  13. "options": {
  14. "cwd": "/usr/bin"
  15. }
  16. }
  17. ],
  18. "version": "2.0.0"
  19. }