1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-07-05 10:48:46 +00:00
sys-con/.vscode/c_cpp_properties.json

31 lines
1.1 KiB
JSON
Raw Normal View History

2019-12-08 18:46:22 +00:00
{
"configurations": [
{
"name": "AArch64 libnx",
"includePath": [
2020-05-29 13:59:45 +00:00
"${DEVKITPRO}/devkitA64/lib/gcc/aarch64-none-elf/10.1.0/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",
2020-02-05 23:24:59 +00:00
"source/inih",
"source/libstratosphere/libstratosphere/include",
"source/libstratosphere/libvapours/include"
2019-12-08 18:46:22 +00:00
],
"defines": [
"SWITCH",
2020-02-05 23:24:59 +00:00
"__SWITCH__",
"ATMOSPHERE_BOARD_NINTENDO_SWITCH",
"ATMOSPHERE_IS_STRATOSPHERE",
"ATMOSPHERE_ARCH_ARM64",
"ATMOSPHERE_OS_HORIZON"
2019-12-08 18:46:22 +00:00
],
"compilerPath": "${DEVKITPRO}/devkitA64/bin/aarch64-none-elf-g++",
2020-05-29 13:59:45 +00:00
"cStandard": "gnu18",
"cppStandard": "gnu++20",
"intelliSenseMode": "gcc-arm64"
2019-12-08 18:46:22 +00:00
}
],
"version": 4
}