From f66536d84b38aa0eb46e928fdaf13d7da790b2ee Mon Sep 17 00:00:00 2001 From: daniel-Jones Date: Sun, 4 Jun 2017 16:26:56 +0930 Subject: added HTML/JS/PHP pages/scripts to allow RGB changes over a web page. Integrated a server into the application to allow incoming connections and receive commands --- qt/ircbot/qtbot.pro | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 qt/ircbot/qtbot.pro (limited to 'qt/ircbot/qtbot.pro') diff --git a/qt/ircbot/qtbot.pro b/qt/ircbot/qtbot.pro new file mode 100644 index 0000000..1f87c7f --- /dev/null +++ b/qt/ircbot/qtbot.pro @@ -0,0 +1,27 @@ +QT += core network serialport +QT -= gui + +CONFIG += c++11 + +TARGET = qtbot +CONFIG += console +CONFIG -= app_bundle + +TEMPLATE = app + +SOURCES += main.cpp \ + qtbot.cpp + +# The following define makes your compiler emit warnings if you use +# any feature of Qt which as been marked deprecated (the exact warnings +# depend on your compiler). Please consult the documentation of the +# deprecated API in order to know how to port your code away from it. +DEFINES += QT_DEPRECATED_WARNINGS + +# You can also make your code fail to compile if you use deprecated APIs. +# In order to do so, uncomment the following line. +# You can also select to disable deprecated APIs only up to a certain version of Qt. +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 + +HEADERS += \ + qtbot.h \ -- cgit v1.2.3