Use qmake/make instead of scons as build-system
[pykit.git] / pykit.pro
1 TEMPLATE = app
2 TARGET = pykit
3 DEPENDPATH += .
4 INCLUDEPATH += .
5 QT += webkit network gui core
6
7 # boost_python
8 LIBS += -lboost_python
9
10 # python
11 QMAKE_CXXFLAGS += $$system(python-config --cflags)
12 QMAKE_CFFLAGS += $$system(python-config --cflags)
13 LIBS += $$system(python-config --ldflags)
14
15 # poppler
16 LIBS += -lpoppler-qt4 -lpoppler
17
18 # Input
19 HEADERS += MainWindow.hh \
20            Publisher.hh \
21            PythonPublisher.hh \
22            Viewer.hh \
23            PDFWidget.hh
24 SOURCES += main.cc \
25            MainWindow.cc \
26            Publisher.cc \
27            PythonPublisher.cc \
28            Viewer.cc \
29            PDFWidget.cc