tipe/.vscode/tasks.json

54 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2022-09-14 10:07:29 +02:00
{
"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."
},
{
2022-09-30 14:22:33 +02:00
"label": "build-all",
2022-10-24 13:56:32 +02:00
"command": "make",
2022-09-14 10:07:29 +02:00
"args": [
"all"
]
},
2022-09-30 14:22:33 +02:00
{
"label": "build-mnist",
2022-10-24 13:56:32 +02:00
"command": "make",
2022-09-30 14:22:33 +02:00
"args": [
"mnist"
]
},
{
"label": "build-cnn",
2022-10-24 13:56:32 +02:00
"command": "make",
2022-09-30 14:22:33 +02:00
"args": [
"cnn"
]
},
2022-09-14 10:07:29 +02:00
],
"version": "2.0.0"
}