Advertisement
Guest User

tasks

a guest
May 9th, 2022
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.68 KB | None | 0 0
  1. {
  2.     "version": "2.0.0",
  3.     "tasks": [
  4.         {
  5.             "type": "cppbuild",
  6.             "label": "C/C++: g++.exe build active file",
  7.             "command": "C:\\msys64\\mingw64\\bin\\g++.exe",
  8.             "args": [
  9.                 "-fdiagnostics-color=always",
  10.                 "-g",
  11.                 // "${fileDirname}/**.cpp",
  12.                 "gameStuff.cpp",
  13.                 "${file}",
  14.                 "-o",
  15.                 "${fileDirname}\\${fileBasenameNoExtension}.exe",
  16.                 "libglfw3.a",
  17.                 "-lopengl32",
  18.                 "-lgdi32",
  19.                 "-luser32",
  20.                 "-lkernel32"
  21.             ],
  22.             "options": {
  23.                 "cwd": "${fileDirname}"
  24.             },
  25.             "problemMatcher": [
  26.                 "$gcc"
  27.             ],
  28.             "group": {
  29.                 "kind": "build",
  30.                 "isDefault": true
  31.             },
  32.             "detail": "compiler: C:\\msys64\\mingw64\\bin\\g++.exe"
  33.         }
  34.     ]
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement