how can I include my header files to the tasks.json file?
I'm trying to add the header files that are in the "includes" folder from the directory the file was built in...
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++.exe build active file",
"command": "C:\\msys64\\ucrt64\\bin\\g++.exe",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
// "${fileDirname}/includes/",
// "${fileDirname}/includes/*.cpp",
// "${fileDirname}\\includes\\",
// "${fileDirname}\\includes\\*.cpp",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": ["$gcc"],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}