blob: fc56e9b255954fbefb7b7172734fa7e332ffc9af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
TEMPLATE = app
TARGET = QtWebProcess
INSTALLS += target
isEmpty(INSTALL_BINS) {
target.path = $$[QT_INSTALL_BINS]
} else {
target.path = $$INSTALL_BINS
}
SOURCES += \
qt/MainQt.cpp
isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../..
include($$PWD/../WebKit.pri)
DESTDIR = $$OUTPUT_DIR/bin
!CONFIG(standalone_package): CONFIG -= app_bundle
QT += network
macx:QT+=xml
linux-* {
# From Creator's src/rpath.pri:
# Do the rpath by hand since it's not possible to use ORIGIN in QMAKE_RPATHDIR
# this expands to $ORIGIN (after qmake and make), it does NOT read a qmake var.
QMAKE_RPATHDIR = \$\$ORIGIN/../lib $$QMAKE_RPATHDIR
MY_RPATH = $$join(QMAKE_RPATHDIR, ":")
QMAKE_LFLAGS += -Wl,-z,origin \'-Wl,-rpath,$${MY_RPATH}\' -Wl,--no-undefined
QMAKE_RPATHDIR =
} else {
QMAKE_RPATHDIR = $$OUTPUT_DIR/lib $$QMAKE_RPATHDIR
}
symbian {
TARGET.UID3 = 0xA000E544
MMP_RULES += pageddata
RSS_RULES += "hidden = KAppIsHidden;" # No icon in application grid
TARGET.CAPABILITY *= ReadUserData
TARGET.CAPABILITY *= WriteUserData
TARGET.CAPABILITY *= NetworkServices # QtNetwork and Bearer
# See QtMobility docs on Symbian capabilities:
# http://doc.qt.nokia.com/qtmobility/quickstart.html
TARGET.CAPABILITY *= ReadDeviceData
TARGET.CAPABILITY *= WriteDeviceData
TARGET.CAPABILITY *= LocalServices
}
contains(QT_CONFIG, opengl) {
QT += opengl
DEFINES += QT_CONFIGURED_WITH_OPENGL
}
|