98 lines
3.4 KiB
Prolog
98 lines
3.4 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2017-03-20T13:09:51
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui network
|
|
|
|
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 += \
|
|
Sources/Chalet/CChalet.cpp \
|
|
Sources/Chalet/ChaletData.cpp \
|
|
Sources/Chalet/ChaletGui.cpp \
|
|
Sources/Chalet/ChaletMasterCtrlInterface.cpp \
|
|
Sources/GuiMain.cpp \
|
|
Sources/main.cpp \
|
|
Sources/NetworkProtocol.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
|
|
|
|
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/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
|
|
|
|
FORMS += \
|
|
SMSGui.ui \
|
|
Sources/Chalet/ChaletGui.ui \
|
|
Sources/Sprinkler/SprinklerGui.ui \
|
|
Sources/Sprinkler/SprinklerDeviceGuiItem.ui \
|
|
Sources/AvReceiver/AvReceiverGui.ui
|