Skip to content

Instantly share code, notes, and snippets.

@n0toose
Last active July 8, 2020 13:11
Show Gist options
  • Save n0toose/1774063d5287dd1b0ab662eab55f4c38 to your computer and use it in GitHub Desktop.
Save n0toose/1774063d5287dd1b0ab662eab55f4c38 to your computer and use it in GitHub Desktop.
3DS devkitPro configuration for Visual Studio Code (vscode). Place this file inside of your .vscode folder (or the corresponding configuration directory, depending on your operating system)
{
"configurations": [
{
"name": "3DS",
"includePath": [
"${workspaceFolder}/**",
"/opt/devkitpro/devkitARM/arm-none-eabi/include",
"/opt/devkitpro/libctru/include"
],
"defines": [],
"compilerPath": "/opt/devkitpro/devkitARM/bin/arm-none-eabi-gcc",
"browse": {
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": ""
},
"intelliSenseMode": "gcc-arm"
}
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment