Added sublime build system that uploads just built product

Renamed existing build system to be more verbose
This commit is contained in:
Anton Matosov 2015-03-03 22:36:05 -08:00
parent 3db6d08b5c
commit 610a714e85
1 changed files with 10 additions and 2 deletions

View File

@ -38,10 +38,18 @@
"build_systems":
[
{
"name": "PX4",
"name": "PX4: make all",
"working_dir": "${project_path}",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"cmd": ["make"]
"cmd": ["make -j8"],
"shell": true
},
{
"name": "PX4: make and upload",
"working_dir": "${project_path}",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"cmd": ["make upload px4fmu-v2_default -j8"],
"shell": true
}
]
}