mirror of
https://github.com/augustin64/projet-tipe
synced 2025-01-23 23:26:25 +01:00
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"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"
|
|
} |