mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
ad0f2080c6
It makes more sense for Hello to be an example and for CPUInfo and Replay to be placed inside a `build/<board>/tools/` directory.
12 lines
169 B
Python
12 lines
169 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
import ardupilotwaf
|
|
|
|
def build(bld):
|
|
ardupilotwaf.program(
|
|
bld,
|
|
use='ap',
|
|
blddestdir='tools',
|
|
)
|