summaryrefslogtreecommitdiffstats
path: root/examples/network/multistreamserver/multistreamserver.pro
blob: 75a7e6bbecc2eb246ed3c2ea085aed56bad9930f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
QT += network widgets

HEADERS       = server.h \
                provider.h \
                movieprovider.h \
                timeprovider.h \
                chatprovider.h
SOURCES       = server.cpp \
                movieprovider.cpp \
                timeprovider.cpp \
                chatprovider.cpp \
                main.cpp

EXAMPLE_FILES = animation.gif

# install
target.path = $$[QT_INSTALL_EXAMPLES]/network/multistreamserver
INSTALLS += target

wince*: {
   addFiles.files += *.gif
   addFiles.path = .
   DEPLOYMENT += addFiles
}