diff options
author | Adrian Graber <adrian@adriangraber.com> | 2021-07-04 18:52:48 +0200 |
---|---|---|
committer | Adrian Graber <adrian@adriangraber.com> | 2021-07-13 00:49:13 +0200 |
commit | 28f266302fbeea2d75d5a62de651d464ab380798 (patch) | |
tree | e9ae6bc810489c798e6bb3f27d75afe803c7f9ae /.vscode/c_cpp_properties.json | |
parent | Vanilla config for Windows and win-x86 only (diff) | |
download | re3-28f266302fbeea2d75d5a62de651d464ab380798.tar re3-28f266302fbeea2d75d5a62de651d464ab380798.tar.gz re3-28f266302fbeea2d75d5a62de651d464ab380798.tar.bz2 re3-28f266302fbeea2d75d5a62de651d464ab380798.tar.lz re3-28f266302fbeea2d75d5a62de651d464ab380798.tar.xz re3-28f266302fbeea2d75d5a62de651d464ab380798.tar.zst re3-28f266302fbeea2d75d5a62de651d464ab380798.zip |
Diffstat (limited to '.vscode/c_cpp_properties.json')
-rw-r--r-- | .vscode/c_cpp_properties.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 327d8cc7..a214042a 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -26,6 +26,25 @@ "compilerArgs": ["-ggdb"], "cStandard": "gnu11", "cppStandard": "gnu++14" + }, + { + "name": "devkitPro aarch64 (Nintendo Switch)", + "compilerPath": "${env:DEVKITPRO}/devkitA64/bin/aarch64-none-elf-g++", + "includePath": [ + "${default}", + "${env:DEVKITPRO}/portlibs/switch/include", + "${env:DEVKITPRO}/libnx/include" + ], + "intelliSenseMode": "gcc-arm64", + "cStandard": "gnu11", + "cppStandard": "gnu++11", + "defines": [ + "__SWITCH__", + "GTA_SWITCH", + "LIBRW", + "RW_GL3", + "AUDIO_OAL" + ] } ], "version": 4 |