#------------------------------------------------- # # 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 += \ 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 HEADERS += Sources/AbstractNetworkInterface.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 FORMS += \ SMSGui.ui \ Sources/Sprinkler/SprinklerGui.ui