{ "version": "2.0.0", "tasks": [ { "label": "make", "type": "shell", "command": "make", "options": { "cwd": "${workspaceRoot}" } }, { "label": "make debug", "type": "shell", "command": "make", "args": [ "debug" ], "options": { "cwd": "${workspaceRoot}" } }, { "label": "build", "type": "shell", "command": "/usr/bin/cc", "args": [ "-g", "${file}", "lib/libhiredis.a", "-o", "${workspaceFolder}/a.out", "-I${workspaceFolder}/include", "-L${workspaceFolder}/lib", "-levent", ], "group": { "kind": "build", "isDefault": true } } ] }