blob: 0867dac72bc9a51895d36f569942c1f2f319c54a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
HEADERS = dialog.h \
fortuneserver.h \
fortunethread.h
SOURCES = dialog.cpp \
fortuneserver.cpp \
fortunethread.cpp \
main.cpp
QT += network
# install
target.path = $$[QT_INSTALL_EXAMPLES]/network/threadedfortuneserver
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS threadedfortuneserver.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/network/threadedfortuneserver
INSTALLS += target sources
|