Starship/.vscode/c_cpp_properties.json

24 lines
635 B
JSON
Raw Normal View History

2023-10-06 09:10:31 +03:00
{
"configurations": [
{
"name": "Linux",
"compilerPath": "${default}",
"compilerArgs": [
"-m32"
],
"intelliSenseMode": "${default}", // Shouldn't matter
"includePath": [
"${workspaceFolder}/**",
"src",
"build",
"include"
],
"defines": [
"_LANGUAGE_C"
],
"cStandard": "gnu89", // C89 + some GNU extensions from C99 like C++ comments
"cppStandard": "${default}"
}
],
"version": 4
}