mirror of
https://github.com/Xeeynamo/sotn-decomp.git
synced 2024-11-27 06:50:35 +00: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
|
|
} |