[ctypes-commit] ctypes/sandbox/tools/codegen h2xml.py,1.1,1.2
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2004-12-02 12:55:47
|
Update of /cvsroot/ctypes/ctypes/sandbox/tools/codegen In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10697 Modified Files: h2xml.py Log Message: Add -I option. Index: h2xml.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/sandbox/tools/codegen/h2xml.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** h2xml.py 23 Nov 2004 20:05:57 -0000 1.1 --- h2xml.py 2 Dec 2004 12:55:36 -0000 1.2 *************** *** 66,69 **** --- 66,70 ---- action="store_true", default=False) + parser.add_option("-D", type="string", *************** *** 80,83 **** --- 81,93 ---- help="macros to undefine", metavar="defines") + + parser.add_option("-I", + type="string", + action="callback", + callback=add_option, + dest="gccxml_options", + help="include directories", + metavar="defines") + parser.add_option("-o", dest="xml_file", |