Created
May 22, 2023 02:00
-
-
Save BillKek/6df7363bcdeb84e79afd23e202d9c690 to your computer and use it in GitHub Desktop.
sublime чтобы было быстро. расширение нужно именно .sublime-build
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
Show hidden characters
{ | |
"shell_cmd": "mingw32-make", | |
"file_regex": "^(..[^:\n]*):([0-9]+):?([0-9]+)?:? (.*)$", | |
"working_dir": "${folder:${project_path:${file_path}}}", | |
"selector": "source.makefile", | |
"syntax": "Packages/Makefile/Make Output.sublime-syntax", | |
"keyfiles": ["Makefile", "makefile"], | |
"variants": | |
[ | |
{ | |
"name": "Clean", | |
"shell_cmd": "mingw32-make clean" | |
}, | |
{ | |
"name": "Fast", | |
"shell_cmd": "mingw32-make -j10" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment