mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 22:48:29 -04:00
5d6bed2814
these are needed for the latest PX4Firmware build
12 lines
215 B
Python
Executable File
12 lines
215 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
from catkin_pkg.python_setup import generate_distutils_setup
|
|
|
|
d = generate_distutils_setup(
|
|
packages=['genmsg'],
|
|
package_dir={'': 'src'}
|
|
)
|
|
|
|
setup(**d)
|