root/customInterfaces/branches/customInterfaces-0.6.2/customInterfaces/python/generatepythonbindings.py
@
5857
| Revision 5857, 293 bytes (checked in by jgaeddert, 6 years ago) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | #! /usr/bin/env python |
| 2 | |
| 3 | import sys |
| 4 | import os |
| 5 | |
| 6 | idl_files = [ |
| 7 | 'charArray.idl', |
| 8 | 'customInterfaces.idl', |
| 9 | 'timingStatus.idl',] |
| 10 | |
| 11 | |
| 12 | for f in idl_files: |
| 13 | cmd = 'omniidl -bpython -I/usr/local/include -Wbpackage=ossie.custominterfaces -Wbinline ../' + f |
| 14 | print cmd |
| 15 | os.system(cmd) |
| 16 | |
| 17 |
Note: See TracBrowser
for help on using the browser.