145 lines
5.4 KiB
Prolog
145 lines
5.4 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2017-03-20T13:09:51
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui network printsupport
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = SystemGui
|
|
TEMPLATE = app
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
# any feature of Qt which as been marked as 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
|
|
|
|
INCLUDEPATH += Sources\
|
|
Sources/SMSClient\
|
|
Sources/Sprinkler\
|
|
Sources/AvReceiver\
|
|
Sources/Chalet\
|
|
Sources/Tower\
|
|
Sources/PICUploader\
|
|
Sources/Ispindel \
|
|
Sources/LoRaModuleInterface
|
|
|
|
SOURCES += \
|
|
Sources/Chalet/CChalet.cpp \
|
|
Sources/Chalet/ChaletData.cpp \
|
|
Sources/Chalet/ChaletGui.cpp \
|
|
Sources/Chalet/ChaletMasterCtrlInterface.cpp \
|
|
Sources/GuiMain.cpp \
|
|
Sources/NetworkProtocol.cpp \
|
|
Sources/PICUploader/PICUploaderGui.cpp \
|
|
Sources/ProgramSettings.cpp \
|
|
Sources/SystemGui.cpp \
|
|
Sources/SMSClient/SMSConversation.cpp \
|
|
Sources/SMSClient/SMSDatabase.cpp \
|
|
Sources/SMSClient/SMSGui.cpp \
|
|
Sources/SMSClient/SMSMessage.cpp \
|
|
Sources/SMSClient/SMSClient.cpp \
|
|
Sources/SMSClient/SMSMasterCtrlInterface.cpp \
|
|
Sources/MasterCtrlInterface.cpp \
|
|
Sources/SMSClient/Contact.cpp \
|
|
Sources/SMSClient/ContactRepository.cpp \
|
|
Sources/SystemTrayManager.cpp \
|
|
Sources/Sprinkler/SprinklerGui.cpp \
|
|
Sources/ToggleSwitch.cpp \
|
|
Sources/Sprinkler/Sprinkler.cpp \
|
|
Sources/Sprinkler/SprinklerMasterCtrlInterface.cpp \
|
|
Sources/Sprinkler/SprinklerDevice.cpp \
|
|
Sources/AvReceiver/AvReceiverGui.cpp \
|
|
Sources/AvReceiver/AvReceiver.cpp \
|
|
Sources/AvReceiver/AvReceiverNetworkCtrlInterface.cpp \
|
|
Sources/AvReceiver/AvReceiverData.cpp \
|
|
Sources/QCustomPlot/qcustomplot.cpp \
|
|
Sources/Tower/TowerLightShowGui.cpp \
|
|
Sources/Tower/LightShowWidget.cpp \
|
|
Sources/Tower/RGBLedWidget.cpp \
|
|
Sources/Tower/LedStringWidget.cpp \
|
|
Sources/Tower/LEDAnimator.cpp \
|
|
Sources/Tower/LEDAnimation.cpp \
|
|
Sources/main.cpp \
|
|
Sources/PICUploader/PICUploader.cpp \
|
|
Sources/PICUploader/HexFile.cpp \
|
|
Sources/PICUploader/HexRecord.cpp \
|
|
Sources/PICUploader/BootloaderProtocol.cpp \
|
|
Sources/CRC32.cpp \
|
|
Sources/Ispindel/IspindelGUI.cpp \
|
|
Sources/Ispindel/Ispindel.cpp \
|
|
Sources/Ispindel/IspindelInterface.cpp \
|
|
Sources/Ispindel/IspindelData.cpp \
|
|
Sources/LoRaModuleInterface/LoraModuleInterface.cpp \
|
|
Sources/LoRaModuleInterface/LoraModuleIFMasterCtrlInterface.cpp \
|
|
Sources/LoRaModuleInterface/LoraModuleInterfaceData.cpp
|
|
|
|
HEADERS += Sources/AbstractNetworkInterface.h \
|
|
Sources/Chalet/CChalet.h \
|
|
Sources/Chalet/ChaletData.h \
|
|
Sources/Chalet/ChaletGui.h \
|
|
Sources/Chalet/ChaletMasterCtrlInterface.h \
|
|
Sources/GuiMain.h \
|
|
Sources/NetworkProtocol.h \
|
|
Sources/PICUploader/PICUploaderGui.h \
|
|
Sources/ProgramSettings.h \
|
|
Sources/ProtocolDefs.h \
|
|
Sources/SystemGui.h \
|
|
Sources/SMSClient/SMSConversation.h \
|
|
Sources/SMSClient/SMSDatabase.h \
|
|
Sources/SMSClient/SMSGui.h \
|
|
Sources/SMSClient/SMSMessage.h \
|
|
Sources/SMSClient/SMSClient.h \
|
|
Sources/SMSClient/SMSMasterCtrlInterface.h \
|
|
Sources/MasterCtrlInterface.h \
|
|
Sources/SMSClient/Contact.h \
|
|
Sources/SMSClient/ContactRepository.h \
|
|
Sources/SystemTrayManager.h \
|
|
Sources/Sprinkler/SprinklerGui.h \
|
|
Sources/ToggleSwitch.h \
|
|
Sources/Sprinkler/Sprinkler.h \
|
|
Sources/Sprinkler/SprinklerDevice.h \
|
|
Sources/Sprinkler/SprinklerMasterCtrlInterface.h \
|
|
Sources/Sprinkler/SprinklerMasterCtrlInterface.h \
|
|
Sources/AvReceiver/AvReceiverGui.h \
|
|
Sources/AvReceiver/AvReceiver.h \
|
|
Sources/AvReceiver/AvReceiverNetworkCtrlInterface.h \
|
|
Sources/AvReceiver/AvReceiverData.h \
|
|
Sources/QCustomPlot/qcustomplot.h \
|
|
Sources/Tower/TowerLightShowGui.h \
|
|
Sources/Tower/LightShowWidget.h \
|
|
Sources/Tower/RGBLedWidget.h \
|
|
Sources/Tower/LedStringWidget.h \
|
|
Sources/Tower/LEDAnimator.h \
|
|
Sources/Tower/LEDAnimation.h \
|
|
Sources/PICUploader/PICUploader.h \
|
|
Sources/PICUploader/HexFile.h \
|
|
Sources/PICUploader/HexRecord.h \
|
|
Sources/PICUploader/BootloaderProtocol.h \
|
|
Sources/CRC32.h \
|
|
Sources/Ispindel/IspindelGUI.h \
|
|
Sources/Ispindel/Ispindel.h \
|
|
Sources/Ispindel/IspindelInterface.h \
|
|
Sources/Ispindel/IspindelData.h \
|
|
Sources/LoRaModuleInterface/LoraModuleInterface.h \
|
|
Sources/LoRaModuleInterface/LoraModuleIFMasterCtrlInterface.h \
|
|
Sources/LoRaModuleInterface/LoraModuleInterfaceData.h
|
|
|
|
FORMS += \
|
|
SMSGui.ui \
|
|
Sources/Chalet/ChaletGui.ui \
|
|
Sources/PICUploader/PICUploaderGui.ui \
|
|
Sources/Sprinkler/SprinklerGui.ui \
|
|
Sources/Sprinkler/SprinklerDeviceGuiItem.ui \
|
|
Sources/AvReceiver/AvReceiverGui.ui \
|
|
Sources/Tower/TowerLightShowGui.ui \
|
|
Sources/Ispindel/IspindelGUI.ui
|