5503bacf65f056322b23528d3a3d61f959e1fdeb
[pykit.git] / SConscript
1 # -*- python -*-
2
3 Import('env')
4
5 # QtSvg and QtXml are needed by some plugins ...
6 env.EnableQt4Modules([ 'QtWebKit', 'QtNetwork', 'QtSvg', 'QtXml', 'QtGui', 'QtCore' ])
7
8 env.Append(
9     CXXFLAGS          = [ '-Wall', '-Wextra' ],
10     CPPPATH           = [ '$LIBPYTHONINCLUDES' ],
11     LIBS              = [ '$LIBBOOSTPYTHON', '$LIBPYTHON' ]
12 )
13
14 sources = env.Qt4Glob()
15
16 pykit = env.Program('pykit', sources)
17 env.Default(pykit)