Skip to content

Instantly share code, notes, and snippets.

@kyuucr
Created December 15, 2018 06:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyuucr/d636792ed0f4570b286da94e9054419f to your computer and use it in GitHub Desktop.
Save kyuucr/d636792ed0f4570b286da94e9054419f to your computer and use it in GitHub Desktop.
Sublime Text build system for ns-3
{
"windows": {
"shell_cmd": "bash -c \"./waf build\""
},
"linux": {
"shell_cmd": "./waf build"
},
"file_patterns": ["*.cc", "*.h"],
"working_dir": "$folder",
"variants": [
{
"name": "Configure",
"windows": {
"shell_cmd": "bash -c \"./waf configure -d debug --enable-examples --enable-tests\""
},
"linux": {
"shell_cmd": "./waf configure -d debug --enable-examples --enable-tests"
},
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment