Changed focus ring color
[framework/web/webkit-efl.git] / Source / WebKit2 / WebProcess.pro
1 # -------------------------------------------------------------------
2 # Project file for the WebKit2 web process binary
3 #
4 # See 'Tools/qmake/README' for an overview of the build system
5 # -------------------------------------------------------------------
6
7 TEMPLATE = app
8
9 TARGET = QtWebProcess
10 DESTDIR = $${ROOT_BUILD_DIR}/bin
11
12 SOURCES += qt/MainQt.cpp
13
14 QT += network webkit widgets
15 macx: QT += xml
16
17 contains(QT_CONFIG, opengl) {
18     QT += opengl
19     DEFINES += QT_CONFIGURED_WITH_OPENGL
20 }
21
22 INSTALLS += target
23
24 isEmpty(INSTALL_BINS) {
25     target.path = $$[QT_INSTALL_BINS]
26 } else {
27     target.path = $$INSTALL_BINS
28 }
29
30