Separate Viewer from MainWindow and implement PDF embedding
[pykit.git] / SConstruct
1 # -*- python -*-
2
3 import os
4
5 env = Environment(ENV = os.environ)
6
7 env.SetDefault(
8     BOOSTPYLIBS = [ 'boost_python' ],
9     POPPLERLIBS = [ 'poppler', 'poppler-qt4' ],
10 )
11
12 env.MergeFlags('!python-config --cflags')
13 env.MergeFlags('!python-config --ldflags')
14
15 Export('env')
16 env.SConscript("SConscript")