Skip to content

Instantly share code, notes, and snippets.

@sawaYch
Last active August 28, 2020 20:04
Show Gist options
  • Save sawaYch/2c9dffe5275472ed4b739c4edf5df87f to your computer and use it in GitHub Desktop.
Save sawaYch/2c9dffe5275472ed4b739c4edf5df87f to your computer and use it in GitHub Desktop.
Vscode C/C++ config for QMK+MSYS2
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/*",
"${workspaceFolder}/**",
"C:/msys64/home/sawa/qmk_utils/avr8-gnu-toolchain/avr/include/*",
"C:/msys64/home/sawa/qmk_utils/avr8-gnu-toolchain/avr/include/**",
"C:/msys64/home/sawa/qmk_utils/avr8-gnu-toolchain/lib/gcc/avr/8.3.0/include-fixed/*",
"C:/msys64/home/sawa/qmk_utils/avr8-gnu-toolchain/lib/gcc/avr/8.3.0/include-fixed/**",
"C:/msys64/home/sawa/qmk_utils/gcc-arm-none-eabi/arm-none-eabi/include/*",
"C:/msys64/home/sawa/qmk_utils/gcc-arm-none-eabi/arm-none-eabi/include/**",
"C:/msys64/home/sawa/qmk_utils/gcc-arm-none-eabi/lib/gcc/arm-none-eabi/8.3.1/include/*",
"C:/msys64/home/sawa/qmk_utils/gcc-arm-none-eabi/lib/gcc/arm-none-eabi/8.3.1/include/**",
"${workspaceFolder}/**",
"${workspaceFolder}/quantum/**",
"${workspaceFolder}/tmk_core/common/**",
"${workspaceFolder}/quantum/audio/**",
"${workspaceFolder}/quantum/process_keycode/**",
"${workspaceFolder}/drivers/avr/**",
"${workspaceFolder}/lib/chibios/**",
"${workspaceFolder}/lib/lufa/**"
],
"defines": [
"UNICODE",
"RGBLIGHT_ENABLE",
"AUDIO_ENABLE",
"TAP_DANCE_ENABLE",
"RGBLIGHT_ANIMATIONS",
"COMMAND_ENABLE",
"KEYBOARD_ergodox_ez",
"AUDIO_CLICKY"
],
"compilerPath": "C:\\msys64\\mingw64\\bin\\gcc.exe",
"cStandard": "c11",
"cppStandard": "gnu++14",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment