Created
August 5, 2019 05:59
-
-
Save takamame0205/ce257e69fcdd65d3adbb0cfe6c4dddea to your computer and use it in GitHub Desktop.
VS CodeのSDCC用IntelliSense設定ファイル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configurations": [ | |
| { | |
| "name": "Win32", | |
| "includePath": [ | |
| "${workspaceFolder}/**", | |
| "C:/Program Files/SDCC/include/**" | |
| ], | |
| "defines": [ | |
| "_DEBUG", | |
| "UNICODE", | |
| "_UNICODE" | |
| ], | |
| "windowsSdkVersion": "10.0.15063.0", | |
| "compilerPath": "C:/Program Files/SDCC/bin/sdcc.exe", | |
| "cStandard": "c11", | |
| "cppStandard": "c++17", | |
| "intelliSenseMode": "${default}" | |
| } | |
| ], | |
| "version": 4 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment