papermario/.vscode/c_cpp_properties.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
890 B
JSON
Raw Normal View History

{
"version": 4,
"configurations": [
{
"name": "papermario",
"browse": {
"limitSymbolsToIncludedHeaders": true,
"path": [
"${workspaceFolder}/include",
"${workspaceFolder}/src"
]
},
"includePath": [
2020-10-20 00:47:29 +02:00
"${workspaceFolder}/include",
"${workspaceFolder}/ver/pal/build/include",
"${workspaceFolder}/src",
"${workspaceFolder}/assets/pal"
],
"defines": [
"F3DEX_GBI_2",
2020-10-22 06:54:03 +02:00
"_LANGUAGE_C",
"_MIPS_SZLONG=32",
"VERSION=pal",
"VERSION_PAL"
],
"cStandard": "c89",
"cppStandard": "c++17",
"intelliSenseMode": "${default}"
}
]
}