Skip to content

Instantly share code, notes, and snippets.

@BillKek
Created May 22, 2023 02:00
Show Gist options
  • Save BillKek/6df7363bcdeb84e79afd23e202d9c690 to your computer and use it in GitHub Desktop.
Save BillKek/6df7363bcdeb84e79afd23e202d9c690 to your computer and use it in GitHub Desktop.
sublime чтобы было быстро. расширение нужно именно .sublime-build
{
"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