aboutsummaryrefslogtreecommitdiff
path: root/client/esp/MyTcpSocket.pro
diff options
context:
space:
mode:
authorNielsCoding <n.stunnebrink@student.avans.nl>2022-10-10 18:30:19 +0200
committerNielsCoding <n.stunnebrink@student.avans.nl>2022-10-10 18:30:19 +0200
commit2cdbf0173600183f1fb14fdd0e01f00e8b09f308 (patch)
treeb1f4ace8a0fd769056377710b63006bef69a8c6a /client/esp/MyTcpSocket.pro
parent1000c8fd861b046a72bb3957dcc04cd6b28ceede (diff)
esp code voor qt
Diffstat (limited to 'client/esp/MyTcpSocket.pro')
-rw-r--r--client/esp/MyTcpSocket.pro28
1 files changed, 28 insertions, 0 deletions
diff --git a/client/esp/MyTcpSocket.pro b/client/esp/MyTcpSocket.pro
new file mode 100644
index 0000000..eb1a19e
--- /dev/null
+++ b/client/esp/MyTcpSocket.pro
@@ -0,0 +1,28 @@
+QT += core
+QT -= gui
+QT += network
+
+TARGET = QTcpSocket
+
+CONFIG += console
+CONFIG -= app_bundle
+
+
+TEMPLATE = app
+# You can make your code fail to compile if it uses deprecated APIs.
+# In order to do so, uncomment the following line.
+#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
+
+SOURCES += \
+ main.cpp \
+ mytcpsocket.cpp \
+ timetest.cpp
+
+# Default rules for deployment.
+qnx: target.path = /tmp/$${TARGET}/bin
+else: unix:!android: target.path = /opt/$${TARGET}/bin
+!isEmpty(target.path): INSTALLS += target
+
+HEADERS += \
+ mytcpsocket.h \
+ timetest.h