{ "version": "2.0.0", "tasks": [ { "label": "build main.c", "type": "shell", "command": "/usr/bin/gcc", "args": [ "-g", "-Wall", "main.c", "-o", "a.out" ], "group": "build", "problemMatcher": [ "$gcc" ], "detail": "Build the main.c file using gcc" }, { "label": "build main_logging.c", "type": "shell", "command": "/usr/bin/gcc", "args": [ "-g", "-Wall", "main_logging.c", "-o", "a.out" ], "group": "build", "problemMatcher": [ "$gcc" ], "detail": "Build the main_logging.c file using gcc" } ] }