Created
December 20, 2017 11:41
-
-
Save SAW4/640c223d29ba4649df6e50a3b6edebf2 to your computer and use it in GitHub Desktop.
SublimeText Build system for KEIL uVision
This file contains 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
Show hidden characters
{ | |
"cmd": ["UV4", "-b", "-j0", "${file}"], | |
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", | |
"working_dir": "${file_path}", | |
"selector": "source.uvprojx", | |
"variants": | |
[ | |
{ | |
"name": "Flash", | |
"shell":true, | |
"cmd": ["UV4", "-f", "-j0", "${file}"] | |
}, | |
{ | |
"name": "Clean", | |
"shell":true, | |
"cmd": ["UV4", "-c", "-j0", "${file}"] | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment