Advertisement
Guest User

tasks.json

a guest
Dec 8th, 2021
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.44 KB | None | 0 0
  1. {
  2.     "version": "2.0.0",
  3.     "tasks": [
  4.         {
  5.             "label": "Launch QEMU",
  6.             "type": "shell",
  7.             "isBackground": true,
  8.             "linux": {
  9.                 "command": "make vscode_debug"
  10.             }
  11.         },
  12.         {
  13.             "label": "Make Clean",
  14.             "type": "shell",
  15.             "linux": {
  16.                 "command": "killall qemu-system-x86_64"
  17.             }
  18.         }
  19.     ]
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement