APL/APL1.1/SAE11_2021/.vscode/tasks.json
2021-11-29 00:31:21 +01:00

29 lines
509 B
JSON
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: gcc générer le fichier actif",
"command": "/usr/bin/gcc",
"args": [
"-fdiagnostics-color=always",
"-lm",
"-lgraph",
"-g",
"${file}",
"-o taquin.out main.o taquin.o utils.o graph_sup.o"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "compilateur : /usr/bin/gcc"
}
]
}