#how do i change this?
10 messages · Page 1 of 1 (latest)
i cant remove it and i cant acces it
Try going to .vscode/tasks.json
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "Build with GCC 12.2.0",
"command": "C:\mingw64\bin\g++.exe",
"args": [
"-fdiagnostics-color=always",
"-g",
"-std=c++20",
"${workspaceFolder}\.cpp",
"-o",
"${fileDirname}\rooster.exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
"detail": "compiler: C:\mingw64\bin\g++.exe"
},
{
"type": "cppbuild",
"label": "Build with clang 14.0.6",
"command": "C:\mingw64\bin\clang++.exe",
"args": [
"-fcolor-diagnostics",
"-fansi-escape-codes",
"-g",
"-std=c++20",
"${workspaceFolder}\.cpp",
"-o",
"${fileDirname}\rooster.exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
"detail": "compiler: C:\mingw64\bin\clang++.exe"
},
{
"type": "cppbuild",
"label": "Build with MSVC",
"command": "cl.exe",
"args": [
"/Zi",
"/std:c++latest",
"/EHsc",
"/Fe:",
"${fileDirname}\rooster.exe",
"${workspaceFolder}\*.cpp"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$msCompile"
],
"group": "build",
"detail": "compiler: cl.exe"
}
]
}
this is what i have in tasks , what should i change
i reinstalled it since i dont have any project yet, thanks tho
@dense parrot Has your question been resolved? If so, run !solved :)
This question thread is being automatically closed. If your question is not answered feel free to bump the post or re-ask. Take a look at !howto ask for tips on improving your question.