[pygccxml-commit] source/pyplusplus/gui wizard.py,1.3,1.4
Brought to you by:
mbaas,
roman_yakovenko
From: Roman <rom...@us...> - 2006-03-29 04:27:06
|
Update of /cvsroot/pygccxml/source/pyplusplus/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31188/pyplusplus/gui Modified Files: wizard.py Log Message: 1. adding most of the aliases needed to functionality needed by user to module builder package 2. updating examples and cleaning unittests Index: wizard.py =================================================================== RCS file: /cvsroot/pygccxml/source/pyplusplus/gui/wizard.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** wizard.py 22 Mar 2006 08:05:35 -0000 1.3 --- wizard.py 29 Mar 2006 04:26:58 -0000 1.4 *************** *** 2,19 **** """ import os - from pygccxml import parser from pyplusplus import module_builder - #Configurating GCC-XML parser - #Basically you should copy here your makefile configuration - parser_configuration = parser.config_t( - #path to GCC-XML binary - gccxml_path=r"%(gccxml_path)s" - , working_directory=r"%(working_dir)s" - , include_paths=%(include_paths)s - , define_symbols=%(define_symbols)s ) - #Creating an instance of class that will help you to expose your declarations ! mb = module_builder.module_builder_t( [r"%(file_path)s"], parser_configuration ) #Well, don't you want to see what is going on? --- 2,14 ---- """ import os from pyplusplus import module_builder #Creating an instance of class that will help you to expose your declarations ! mb = module_builder.module_builder_t( [r"%(file_path)s"] ! , gccxml_path=r"%(gccxml_path)s" ! , working_directory=r"%(working_dir)s" ! , include_paths=%(include_paths)s ! , define_symbols=%(define_symbols)s ) ! #Well, don't you want to see what is going on? *************** *** 25,29 **** #Writing code to file. mb.write_module( './bindings.cpp' ) - """ --- 20,23 ---- |