blob: 9b84cfd511800ad13e0dd042decf73d4c59a0f36 (
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
|
SOURCES += main.cpp
QT -= gui
RESOURCES = resources.qrc
win32: CONFIG += console
wince*|symbian:{
htmlfiles.files = *.html
htmlfiles.path = .
DEPLOYMENT += htmlfiles
}
# install
target.path = $$[QT_INSTALL_EXAMPLES]/xml/htmlinfo
INSTALLS += target
symbian {
TARGET.UID3 = 0xA000C609
include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
}
maemo5: include($$QT_SOURCE_TREE/examples/maemo5pkgrules.pri)
symbian: warning(This example does not work on Symbian platform)
|