Skip to content

Instantly share code, notes, and snippets.

@kartikkumar
Last active August 29, 2015 14:16
Show Gist options
  • Save kartikkumar/5b54ba7dbec974e4914e to your computer and use it in GitHub Desktop.
Save kartikkumar/5b54ba7dbec974e4914e to your computer and use it in GitHub Desktop.
Sublime Text CMake build system
{
"cmd": ["make"],
"working_dir": "$project_path/build",
"variants":
[
{
"cmd": ["make", "test"],
"working_dir": "$project_path/build",
"name": "run all tests"
},
{
"cmd": ["make","install"],
"working_dir": "${project_path}/build",
"name": "install"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment