mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-01-23 21:45:00 +03:00
24 lines
635 B
JSON
24 lines
635 B
JSON
|
{
|
||
|
"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
|
||
|
}
|