1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-07-08 03:58:43 +00:00
sys-con/.vscode/c_cpp_properties.json

25 lines
799 B
JSON
Raw Normal View History

2019-12-08 18:46:22 +00:00
{
"configurations": [
{
"name": "AArch64 libnx",
"includePath": [
"${DEVKITPRO}/devkitA64/lib/gcc/aarch64-none-elf/*/include/",
"${DEVKITPRO}/devkitA64/aarch64-none-elf/include/",
"${DEVKITPRO}/portlibs/switch/include/",
"${DEVKITPRO}/libnx/include/",
2020-01-12 02:01:44 +00:00
"source/ControllerLib",
"source/ControllerSwitch",
"source/inih"
2019-12-08 18:46:22 +00:00
],
"defines": [
"SWITCH",
"__SWITCH__"
],
"compilerPath": "${DEVKITPRO}/devkitA64/bin/aarch64-none-elf-g++",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64"
}
],
"version": 4
}