# -*- python -*- Import('env') # QtSvg and QtXml are needed by some plugins ... env.EnableQt4Modules([ 'QtWebKit', 'QtNetwork', 'QtSvg', 'QtXml', 'QtGui', 'QtCore' ]) env.Append( CXXFLAGS = [ '-Wall', '-Wextra' ], CPPPATH = [ '$LIBPYTHONINCLUDES' ], LIBS = [ '$LIBBOOSTPYTHON', '$LIBPYTHON' ] ) sources = env.Qt4Glob() pykit = env.Program('pykit', sources) env.Default(pykit)