programmation:cpp_et_gtkmm:vscode:tasks
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "C/C++: cpp build workspace",
"command": "/usr/bin/g++",
"args": [
"-g",
"`pkg-config",
"--cflags",
"gtkmm-3.0`",
"${cwd}/*.cpp",
"`pkg-config",
"--libs",
"gtkmm-3.0`",
"-o",
"${cwd}/${workspaceFolderBasename}"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
programmation/cpp_et_gtkmm/vscode/tasks.txt · Dernière modification : 2021/04/11 18:26 de 192.168.1.254