blob: 8c37b04b374e753a93ffea16bf6c41e8d6215324 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
HEADERS = settingswidget.h \
plotwidget.h
SOURCES = settingswidget.cpp \
plotwidget.cpp \
main.cpp
QT += webkit
# install
target.path = $$[QT_INSTALL_EXAMPLES]/scroller/plot
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS plot.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/scroller/plot
INSTALLS += target sources
symbian {
TARGET.UID3 = 0xA000CF66
include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
}
|