75a9bd2a4f
Add protocol-specific code and the QSctpServer, QSctpSocket classes. Change-Id: Ie9a1d87bd1fda866a2405043d1c15c12ded5a96e Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
25 lines
549 B
Prolog
25 lines
549 B
Prolog
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
|
|
}
|