Advertisement
sriyanto

tasks

Feb 25th, 2024
743
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.67 KB | None | 0 0
  1. {
  2.     // See https://go.microsoft.com/fwlink/?LinkId=733558
  3.     // for the documentation about the tasks.json format
  4.     "version": "2.0.0",
  5.     "tasks": [
  6.         {
  7.             "label": "Compile C++",
  8.             "type": "shell",
  9.             "command": "g++",
  10.             "args": [
  11.                 "-std=c++17",
  12.                 "./src/*.cpp",
  13.                 "-o",
  14.                 "./bin/Main.exe",
  15.             ]
  16.         },
  17.         {
  18.             "label":"run",
  19.             "type":"shell",
  20.             "command":"./bin/Main",
  21.             "dependsOn":["Compile C++"],
  22.             "group":{
  23.                 "kind": "build",
  24.                 "isDefault": true
  25.             }
  26.         }
  27.     ]
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement