# -*- python -*- import os.path Import('env') env.Tool('qt4', [ os.path.join('site_scons','qtscons') ]) # QtSvg and QtXml are needed by some plugins ... env.EnableQt4Modules([ 'QtWebKit', 'QtNetwork', 'QtSvg', 'QtXml', 'QtGui', 'QtCore' ]) env.Append( CXXFLAGS = [ '-Wall', '-Wextra' ], LIBS = [ '$BOOSTPYLIBS', '$POPPLERLIBS' ], ) pykit = env.Program('pykit', env.Qt4Glob()) env.Default(pykit)