mirror of
https://github.com/ajouatom/openpilot.git
synced 2026-02-18 21:13:56 +08:00
6 lines
255 B
Python
6 lines
255 B
Python
|
|
Import('env', 'envCython')
|
||
|
|
|
||
|
|
transformations = env.Library('transformations', ['orientation.cc', 'coordinates.cc'])
|
||
|
|
transformations_python = envCython.Program('transformations.so', 'transformations.pyx')
|
||
|
|
Export('transformations', 'transformations_python')
|