#how do i change this?

10 messages · Page 1 of 1 (latest)

grand vessel
#

Why'd you need to change it tho?

dense parrot
lunar dawn
#

Try going to .vscode/tasks.json

dense parrot
#

{
"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"
}
]
}

dense parrot
lunar dawn
#

Something in there

#

Should have a refrence to .vscode

dense parrot
#

i reinstalled it since i dont have any project yet, thanks tho

grim mesaBOT
#

@dense parrot Has your question been resolved? If so, run !solved :)

grim mesaBOT
#

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.