{ "tasks": [ { "type": "cppbuild", "label": "C/C++: gcc générer le fichier actif", "command": "/usr/bin/gcc", "args": [ "-fdiagnostics-color=always", "-g", "${file}", "-o", "${workspaceFolder}/out/${fileBasenameNoExtension}", "-lm", "-lpthread", "-std=c99", "-Wall", "-Wextra" ], "options": { "cwd": "${fileDirname}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true }, "detail": "Tâche générée par le débogueur." }, { "label": "build-all", "command": "make", "args": [ "all" ] }, { "label": "build-mnist", "command": "make", "args": [ "mnist" ] }, { "label": "build-cnn", "command": "make", "args": [ "cnn" ] }, ], "version": "2.0.0" }