bmxviewer/.vscode/c_cpp_properties.json

24 lines
519 B
JSON
Raw Normal View History

2023-11-17 12:33:33 -08:00
{
"configurations": [
{
"name": "CC65",
"includePath": [
"${workspaceFolder}/**",
"/usr/share/cc65/include"
],
"defines": [
"__CX16__",
"__fastcall__=",
"fastcall=",
"__asm__(...)=",
"asm(...)=",
"cdecl=",
"__cdecl__="
],
"cStandard": "c99",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}