blob: 4bbdaf1a9d1c15914bc37d2f471d687f3723b8f0 (
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
include($$QT_SOURCE_TREE/examples/examplebase.pri)
|