Starship/.vscode/c_cpp_properties.json
petrie911 6b4015367d
Non-audio threads. Some data importation. (#17)
* threads galore

* something's up

* try this

* I don't even

* who knows

* I can't stop it

* let's try data for fun

* ok I think I've gone far enough

* well maybe a little more

* visual assets somewhat documented

* just keeps going

* forgot formatting
2023-11-07 19:32:09 -03:00

26 lines
699 B
JSON

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