c-compiler/.vscode/c_cpp_properties.json
2026-04-10 21:45:05 +03:00

22 lines
522 B
JSON

{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "linux-gcc-x86",
"compilerArgs": [
"-Wall",
"-Weffc++",
"-Wextra",
"-Werror"
]
}
],
"version": 4
}