mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
b251d14778
The program_dir defaults to the first group's name. That feature will be useful for "copter" build command, which will build all frame types.
9 lines
133 B
Python
9 lines
133 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
def build(bld):
|
|
bld.ap_program(
|
|
use='ap',
|
|
program_groups='tools',
|
|
)
|