aboutsummaryrefslogtreecommitdiff
path: root/client/esp/MyTcpSocket.pro
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-10-11 18:34:48 +0200
committerlonkaars <loek@pipeframe.xyz>2022-10-11 18:34:48 +0200
commitacb25f74631597b2b24dca2c16da9dbb9ed2ecb1 (patch)
tree3eb6151054551a1586eeb1dbd67cda23dc2e47b2 /client/esp/MyTcpSocket.pro
parent1d385074e33f831e88499603c46e25170b770ada (diff)
parent8c1381da90da1d8c972ee6065dfe5d0ee5e5f1e1 (diff)
Merge branch 'QT_ESP' of https://github.com/NielsCoding/avans-whether-station into esp
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