Last active
December 14, 2015 20:19
-
-
Save sooop/5143061 to your computer and use it in GitHub Desktop.
ANSI-C Build System for win32
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
{ | |
"cmd": ["gcc", "${file}", "-o", "${file_path}/${file_base_name}"], | |
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", | |
"working_dir": "${file_path}", | |
"selector": "source.c", | |
"variants": | |
[ | |
{ | |
"name": "Run", | |
"cmd": ["${file_path}/${file_base_name}"] | |
}, | |
{ | |
"name": "Build for Debug", | |
"cmd": ["gcc", "${file}", "-g", "-o", "${file_path}/${file_base_name}"] | |
}, | |
{ | |
"name": "Build(Clang)", | |
"cmd": ["clang", "${file}", "-o", "${file_path}/${file_base_name}", "-I", "C:/GNUStep/include"] | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment