root/customInterfaces/branches/customInterfaces-0.6.2/customInterfaces/python/generatepythonbindings.py @ 5857

Revision 5857, 293 bytes (checked in by jgaeddert, 6 years ago)

adding -Wbinline to omniidl for python backend to link properly with ossie PortTypes?

  • Property svn:executable set to *
Line 
1#! /usr/bin/env python
2
3import sys
4import os
5
6idl_files = [
7    'charArray.idl',
8    'customInterfaces.idl',
9    'timingStatus.idl',]
10
11
12for 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.