В коде Visual Studio я могу легко скомпилировать и отладить один файл C ++. Но когда дело доходит до нескольких файлов C ++ с некоторым заголовочным файлом, он не работает.
Вот задачи по умолчанию. json file
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "/usr/bin"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Какие изменения я должен сделать