65X-DOS/.vscode/c_cpp_properties.json

28 lines
777 B
JSON
Raw Permalink Normal View History

2024-07-12 08:24:54 +02:00
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/local/bin/cc65816",
"cStandard": "c17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64"
},
{
"name": "Calypsi",
"includePath": [
"${workspaceFolder}/**",
"/usr/local/lib/calypsi-65816/include/"
],
"defines": [],
"compilerPath": "/usr/local/bin/cc65816",
"cStandard": "c11",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-clang-x64"
}
],
"version": 4
}