chore: Change compiler to GCC

As we use GCC obviously.
pull/4/head
Nefo Fortressia 2021-09-13 14:22:39 +07:00
parent e21c45b444
commit 863f2713cc
1 changed files with 19 additions and 0 deletions

19
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include/qt/QtWidgets",
"/usr/include/qt"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c17",
"cppStandard": "c++14",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
}