mirror of
https://github.com/augustin64/projet-tipe
synced 2025-01-24 15:36:25 +01:00
60 lines
1.6 KiB
JSON
60 lines
1.6 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."
|
||
|
},
|
||
|
{
|
||
|
"type": "build",
|
||
|
"label": "C: gcc générer le fichier actif",
|
||
|
"command": "gcc",
|
||
|
"args": [
|
||
|
"-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."
|
||
|
}
|
||
|
],
|
||
|
"version": "2.0.0"
|
||
|
}
|