Skip to content

Instantly share code, notes, and snippets.

@sjb-gist
Created October 24, 2012 03:20
Show Gist options
  • Save sjb-gist/3943478 to your computer and use it in GitHub Desktop.
Save sjb-gist/3943478 to your computer and use it in GitHub Desktop.
sublime-project: Build system json for waf build system.
{
"build_systems":
[
{
"cmd":
[
"${project_path:.}/waf",
"${file_name}"
],
"name": "waf",
"variants":
[
{
"cmd":
[
"${project_path:.}/waf",
"configure"
],
"name": "Waf: Configure"
},
{
"cmd":
[
"${project_path:.}/waf",
"build"
],
"name": "Waf: Build"
},
{
"cmd":
[
"${project_path:.}/waf",
"all"
],
"name": "Run"
},
{
"cmd":
[
"${project_path:.}/waf",
"nunit"
],
"name": "Waf: Nunit"
}
],
"working_dir": "${project_path}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment