blob: 2c0eadadbcf50a30fef7d6fd1d4e4818c1cfd70b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
CONFIG += assistant
QT += network
HEADERS = mainwindow.h \
findfiledialog.h
SOURCES = main.cpp \
mainwindow.cpp \
findfiledialog.cpp
# install
target.path = $$[QT_INSTALL_EXAMPLES]/assistant/simpletextviewer
sources.files = $$SOURCES $$HEADERS $$RESOURCES documentation *.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/assistant/simpletextviewer
INSTALLS += target sources
symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
|