Я использую код Visual Studio для компиляции приложения C ++.
Вот мой файл tasks.json:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "C:/mingw-w64/mingw32/bin/g++.exe",
"args": [
"-g", "TestBuild/main.cpp"
]
}
]
}
Когда я запускаю задачу, я получаю следующую ошибку:
> Executing task in folder TestBuild: C:/mingw-w64/mingw32/bin/g++.exe -g TestBuild/main.cpp <
The terminal process terminated with exit code: 1
Когда я запускаю команду в обычном окне cmd (внутри кода Visual Studio), она работает нормально.
В чем может быть проблема?
Спасибо,
Илан