Advertisement
axyd

tasks.json

Feb 6th, 2020
858
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.61 KB | None | 0 0
  1. {
  2.     "tasks": [
  3.         {
  4.             "type": "shell",
  5.             "label": "g++.exe build active file",
  6.             "command": "C:\\Users\\axyd\\Google Drive\\Programs\\Mingw64\\bin\\g++.exe",
  7.             "args": [
  8.                 "-g",
  9.                 "${fileDirname}/**.cpp",
  10.                 "-std=c++11",
  11.                 "-Wextra",
  12.                 "-o",
  13.                 "${fileDirname}\\..\\bin\\${fileBasenameNoExtension}.exe"
  14.             ],
  15.             "options": {
  16.                 "cwd": "C:\\Users\\axyd\\Google Drive\\Programs\\Mingw64\\bin"
  17.             }
  18.         }
  19.     ],
  20.     "version": "2.0.0"
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement