Created
November 7, 2012 18:43
-
-
Save sjb-gist/4033526 to your computer and use it in GitHub Desktop.
sublime build configuration for waf script compiling c# codes
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
{ | |
"working_dir": "${project_path}", | |
"cmd": ["${project_path:.}/waf", "build"], | |
"selector": "source.cs", | |
"file_regex": "^\\.*/(.*)\\((\\d+),(\\d+)\\):\\s*(.*)$", | |
"variants": | |
[ | |
{ | |
"cmd": ["${project_path:.}/waf", "configure"], | |
"name": "Configure" | |
}, | |
{ | |
"cmd": ["${project_path:.}/waf", "clean"], | |
"name": "Clean" | |
}, | |
{ | |
"cmd": ["${project_path:.}/waf", "lint"], | |
"name": "lint" | |
}, | |
{ | |
"cmd": ["${project_path:.}/waf", "test"], | |
"name": "Run" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment