1
QT      += webkit network
2
3
HEADERS = framecapture.h
4
SOURCES = main.cpp \
5
          framecapture.cpp
6
7
# install
8
target.path = $$[QT_INSTALL_EXAMPLES]/webkit/framecapture
9
sources.files = $$SOURCES $$HEADERS
10
sources.path = $$[QT_INSTALL_EXAMPLES]/webkit/framecapture
11
INSTALLS += target sources
12
13
symbian {
14
    TARGET.CAPABILITY = NetworkServices
15
    include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
16
}
17
18
maemo5: include($$QT_SOURCE_TREE/examples/maemo5pkgrules.pri)
19
20
symbian: warning(This example does not work on Symbian platform)
21
simulator: warning(This example does not work on Simulator platform)