forked from Archive/PX4-Autopilot
Added sublime build system that uploads just built product
Renamed existing build system to be more verbose
This commit is contained in:
parent
3db6d08b5c
commit
610a714e85
|
@ -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
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue