Example UDP server project

This commit is contained in:
Ollo
2023-08-13 22:38:07 +02:00
parent 1c3c64f447
commit 3aace88c0b
3 changed files with 62 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
QT += core gui
QT += network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
@@ -10,10 +11,12 @@ CONFIG += c++11
SOURCES += \
main.cpp \
mainwindow.cpp
mainwindow.cpp \
udpserver.cpp
HEADERS += \
mainwindow.h
mainwindow.h \
udpserver.h
FORMS += \
mainwindow.ui