Last active
August 5, 2019 05:28
-
-
Save takamame0205/86ea4d1e62cd16082f02fbd09e406257 to your computer and use it in GitHub Desktop.
VS CodeからSDCCを呼び出すための設定ファイル
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
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "label": "sdcc", | |
| "type": "shell", | |
| "command": "_sdcc", | |
| "args": [ | |
| "main" | |
| ], | |
| "group": { | |
| "kind": "build", | |
| "isDefault": true | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment