-
-
Notifications
You must be signed in to change notification settings - Fork 319
PyuicBuilder
garyo edited this page Dec 13, 2014
·
1 revision
PyuicBuilder is simple builder to generate Python files for PyQt from Qt .ui sources. The .ui files are typically created in QtDesigner.
# Builder for PyQt pyuic4
# Based on this: http://osdir.com/ml/programming.tools.scons.user/2003-08/msg00126.html
# and a tip from Sergey Popov on freenode.net #scons
import os
env = Environment(ENV = os.environ )
uic_builder_py = Builder(
action = 'pyuic4 $SOURCE -o $TARGET',
suffix = '.py',
src_suffix = '.ui',
single_source = True)
env.Append( BUILDERS = { 'FormPy': uic_builder_py } )
env.FormPy(source=Glob('*.ui'))