From 940287a97e3e20437456bdf91adf673952b270dd Mon Sep 17 00:00:00 2001 From: jfmartel Date: Sun, 13 Sep 2020 13:50:05 -0400 Subject: [PATCH] Chalet LORA --- Sources/Chalet/CChalet.cpp | 91 + Sources/Chalet/CChalet.h | 39 + Sources/Chalet/Chalet.cpp | 14 - Sources/Chalet/Chalet.h | 22 - Sources/Chalet/ChaletData.cpp | 49 + Sources/Chalet/ChaletData.h | 49 + Sources/Chalet/ChaletGui.cpp | 113 +- Sources/Chalet/ChaletGui.h | 12 + Sources/Chalet/ChaletGui.ui | 192 +- Sources/Chalet/ChaletMasterCtrlInterface.cpp | 13 +- Sources/MasterCtrlInterface.cpp | 2 +- Sources/ProtocolDefs.h | 7 + Sources/SystemGui.cpp | 3 + Sources/SystemGui.h | 2 + SystemGui.pro | 6 +- SystemGui.pro.user.22 | 515 ++++ compile_commands.json | 2612 ++++++++++++++++++ ui_ChaletGui.h | 95 +- ui_SMSGui.h | 38 +- 19 files changed, 3801 insertions(+), 73 deletions(-) create mode 100644 Sources/Chalet/CChalet.cpp create mode 100644 Sources/Chalet/CChalet.h delete mode 100644 Sources/Chalet/Chalet.cpp delete mode 100644 Sources/Chalet/Chalet.h create mode 100644 Sources/Chalet/ChaletData.cpp create mode 100644 Sources/Chalet/ChaletData.h create mode 100644 SystemGui.pro.user.22 create mode 100644 compile_commands.json diff --git a/Sources/Chalet/CChalet.cpp b/Sources/Chalet/CChalet.cpp new file mode 100644 index 0000000..2965989 --- /dev/null +++ b/Sources/Chalet/CChalet.cpp @@ -0,0 +1,91 @@ +#include "CChalet.h" +#include "ChaletMasterCtrlInterface.h" + +CChalet::CChalet(CChaletGui *ChaletGuiPtr) +{ + mChaletGui = ChaletGuiPtr; + mChaletGui->mProgramHandle = this; + mNetworkInterface = new CChaletMasterCtrlInterface(this); + + + mChaletPollTimer = new QTimer(); + mChaletPollTimer->setInterval(1000); + mChaletPollTimer->setSingleShot(false); + connect(mChaletPollTimer,SIGNAL(timeout()),this,SLOT(ChaletPollTimerExpired())); + + +} + +CChalet::~CChalet() +{ + delete mNetworkInterface; + delete mChaletPollTimer; +} + +int CChalet::Start() +{ + mNetworkInterface->ConnectToMasterCtrl(); + mChaletPollTimer->start(); + + return RET_OK; +} + +void CChalet::ChaletPollTimerExpired() +{ + mNetworkInterface->SendMasterCtrlCommand(CHALET_INTERFACE_GENERAL_STATUS_REQUEST,QByteArray()); +} + +int CChalet::ChaletStatusReceived(CChaletMainStatus Status) +{ + mChaletGui->UpdateChaletStatus(Status); + + return RET_OK; +} + +int CChalet::WiFiToggleButtonPressed(bool RequestedState) +{ + + QByteArray WiFiState; + WiFiState.clear(); + + if(RequestedState) + { + WiFiState.append((char)0x01); + } + else + { + WiFiState.append((char)0x00); + } + return mNetworkInterface->SendMasterCtrlCommand(CHALET_INTERFACE_WIFI_SET_STATE_REQUEST,WiFiState); +} + +int CChalet::InverterToggleButtonPressed(bool RequestedState) +{ + QByteArray InverterState; + InverterState.clear(); + + if(RequestedState) + { + InverterState.append((char)0x01); + } + else + { + InverterState.append((char)0x00); + } + return mNetworkInterface->SendMasterCtrlCommand(CHALET_INTERFACE_AC_POWER_SET_STATE_REQUEST,InverterState); +} + +int CChalet::DoHarakiriButtonClicked(bool Verified) +{ + if(Verified) + { + return mNetworkInterface->SendMasterCtrlCommand(CHALET_INTERFACE_DO_HARAKIRI_REQUEST,QByteArray()); + } + + return RET_ERROR; +} + +int CChalet::RebootCPUButtonPressed() +{ + return mNetworkInterface->SendMasterCtrlCommand(CHALET_INTERFACE_REBOOT_CPU_REQUEST,QByteArray()); +} diff --git a/Sources/Chalet/CChalet.h b/Sources/Chalet/CChalet.h new file mode 100644 index 0000000..d89613c --- /dev/null +++ b/Sources/Chalet/CChalet.h @@ -0,0 +1,39 @@ +#ifndef CCHALET_H +#define CCHALET_H + +#include "ChaletGui.h" +#include +#include +#include "ChaletData.h" + +class CChaletMasterCtrlInterface; + +class CChalet : public QObject +{ + Q_OBJECT +public: + explicit CChalet(CChaletGui *ChaletGuiPtr); + ~CChalet(); + + CChaletGui *mChaletGui; + CChaletMasterCtrlInterface *mNetworkInterface; + + QTimer *mChaletPollTimer; + + + int Start(); + int ChaletStatusReceived(CChaletMainStatus Status); + + int WiFiToggleButtonPressed(bool RequestedState); + int InverterToggleButtonPressed(bool RequestedState); + int DoHarakiriButtonClicked(bool Verified); + int RebootCPUButtonPressed(); + +signals: + +public slots: + void ChaletPollTimerExpired(); + +}; + +#endif // CCHALET_H diff --git a/Sources/Chalet/Chalet.cpp b/Sources/Chalet/Chalet.cpp deleted file mode 100644 index f44fe37..0000000 --- a/Sources/Chalet/Chalet.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "Chalet.h" -#include "ChaletMasterCtrlInterface.h" - -CChalet::CChalet(CChaletGui *ChaletGui) -{ - mChaletGui = ChaletGui; - mChaletGui->mProgramHandle = this; - mNetworkInterface = new CChaletMasterCtrlInterface(this); -} - -CChalet::~CChalet() -{ - delete mNetworkInterface; -} diff --git a/Sources/Chalet/Chalet.h b/Sources/Chalet/Chalet.h deleted file mode 100644 index d0b2837..0000000 --- a/Sources/Chalet/Chalet.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef CCHALET_H -#define CCHALET_H - -#include -#include "ChaletGui.h" -class CChaletMasterCtrlInterface; - -class CChalet : public QObject -{ - Q_OBJECT -public: - explicit CChalet(CChaletGui *ChaletGui); - ~CChalet(); - - CChaletMasterCtrlInterface *mNetworkInterface; - CChaletGui *mChaletGui; - -signals: - -}; - -#endif // CCHALET_H diff --git a/Sources/Chalet/ChaletData.cpp b/Sources/Chalet/ChaletData.cpp new file mode 100644 index 0000000..5c8cd62 --- /dev/null +++ b/Sources/Chalet/ChaletData.cpp @@ -0,0 +1,49 @@ +#include "ChaletData.h" +#include + + + +CChaletMainStatus::CChaletMainStatus() +{ + mInverterRelayStatus = CHALET_POWER_RELAY_UNKNOWN_STATE; + mWiFiModuleStatus = WIFI_UNKNOWN_STATE; + mBatteryCurrent = 0; + mBatteryVoltage = 0; + +} + +int CChaletMainStatus::FromByteArray(QByteArray Data) +{ + QDataStream Strm(Data); + Strm.device()->seek(0); + + Strm >> mInverterRelayStatus; + Strm >> mWiFiModuleStatus; + Strm >> mBatteryVoltage; + Strm >> mBatteryCurrent; + Strm >> mBatterySOC; + +// ChaletStatus[0] = GetChaletPowerRelayState(); //Inverter relay status +// ChaletStatus[1] = GetWiFiSate(); //Wifi Module state +// ChaletStatus[2] = 3; //Battery Voltage 1 +// ChaletStatus[3] = 4; //Battery voltage 2 +// ChaletStatus[4] = 5; //Battery current 1 +// ChaletStatus[5] = 6; //Batgtery current 2 +// ChaletStatus[6] = 7; //Battery SOC +// ChaletStatus[7] = 8; //Snatch +// ChaletStatus[8] = 9; +// ChaletStatus[9] = 10; + + return RET_OK; +} + +//QByteArray CChaletMainStatus::ToByteArray() +//{ +// QByteArray Data; +// Data.resize(10); + +// Data.append(mInverterRelayStatus); +// Data.append(mWiFiModuleStatus); + +// return Data; +//} diff --git a/Sources/Chalet/ChaletData.h b/Sources/Chalet/ChaletData.h new file mode 100644 index 0000000..d81ecb8 --- /dev/null +++ b/Sources/Chalet/ChaletData.h @@ -0,0 +1,49 @@ +#ifndef CHALETDATA_H +#define CHALETDATA_H +#include +#include "GlobalDefine.h" +#include +#include + +enum eWiFiState +{ + WIFI_MODULE_OFF_STATE = 0, + WIFI_CONNECTED_STATE, + WIFI_DISCONNECTED_STATE, + WIFI_INIT_ERROR_STATE, + WIFI_UNKNOWN_STATE +}; + +enum eChaletPowerRelayState +{ + CHALET_POWER_RELAY_OFF_STATE = 0, + CHALET_POWER_RELAY_ON_STATE, + CHALET_POWER_RELAY_UNKNOWN_STATE +}; + + +class CChaletMainStatus +{ +public: + + // QByteArray ToByteArray(); + int FromByteArray(QByteArray Data); + + CChaletMainStatus(); + + quint8 mInverterRelayStatus; + quint8 mWiFiModuleStatus; + + float mBatteryVoltage; + float mBatteryCurrent; + float mBatterySOC; + + bool mHarakiriDone; + bool mIsOnline; + + QDateTime mLastLoraStatus; + +}; + + +#endif // CHALETDATA_H diff --git a/Sources/Chalet/ChaletGui.cpp b/Sources/Chalet/ChaletGui.cpp index ec0ecc9..2cbd6fa 100644 --- a/Sources/Chalet/ChaletGui.cpp +++ b/Sources/Chalet/ChaletGui.cpp @@ -1,15 +1,126 @@ #include "ChaletGui.h" #include "ui_ChaletGui.h" -#include "Chalet.h" +#include "CChalet.h" CChaletGui::CChaletGui(QWidget *parent) : QWidget(parent), ui(new Ui::CChaletGui) { ui->setupUi(this); + + ui->mDoHarakiriButton->setEnabled(false); + + connect(ui->mWiFiModuleONBtn,SIGNAL(clicked()),this,SLOT(WiFiONButtonClicked())); + connect(ui->mWiFiModuleOFFBtn,SIGNAL(clicked(bool)),this,SLOT(WiFiOFFButtonClicked())); + connect(ui->mInverterRelayOFFBtn,SIGNAL(clicked()),this,SLOT(InverterPowerOFFButtonClicked())); + connect(ui->mInverterRelayONBtn,SIGNAL(clicked(bool)),this,SLOT(InverterPowerONButtonClicked())); + connect(ui->mRebootCPUBtn,SIGNAL(clicked(bool)),this,SLOT(RebootCPUButtonClicked())); + connect(ui->mDoHarakiriButton,SIGNAL(clicked(bool)),this,SLOT(DoHarakiriButtonClicked())); + connect(ui->mEnableHarakiriChkBx,SIGNAL(clicked(bool)),this,SLOT(EnableHarakiriClicked(bool))); } CChaletGui::~CChaletGui() { delete ui; } + +int CChaletGui::UpdateChaletStatus(CChaletMainStatus Status) +{ + QString text; + switch(Status.mWiFiModuleStatus) + { + case WIFI_CONNECTED_STATE: + { + text = "Connected"; + break; + } + case WIFI_MODULE_OFF_STATE: + { + text = "Module OFF"; + break; + } + case WIFI_DISCONNECTED_STATE: + { + text = "Disconnected"; + break; + } + case WIFI_INIT_ERROR_STATE: + { + text = "Init. Error"; + break; + } + case WIFI_UNKNOWN_STATE: + default: + { + text = "WiFi: Unknown state"; + break; + } + } + + ui->mWiFiModuleStatusLabel->setText(text); + + switch(Status.mInverterRelayStatus) + { + case CHALET_POWER_RELAY_OFF_STATE: + { + text = "OFF"; + break; + } + case CHALET_POWER_RELAY_ON_STATE: + { + text = "ON"; + break; + } + case CHALET_POWER_RELAY_UNKNOWN_STATE: + default: + { + text = "Unknown"; + break; + } + + + } + ui->mInverterRlyStatusLabel->setText(text); + + QString Voltage = QString("Battery Voltage: %1").arg(Status.mBatteryVoltage); + ui->mBatteryVoltageLabel->setText(Voltage); + return RET_OK; +} + +void CChaletGui::WiFiONButtonClicked() +{ + mProgramHandle->WiFiToggleButtonPressed(true); +} +void CChaletGui::WiFiOFFButtonClicked() +{ + mProgramHandle->WiFiToggleButtonPressed(false); +} +void CChaletGui::InverterPowerONButtonClicked() +{ + mProgramHandle->InverterToggleButtonPressed(true); +} +void CChaletGui::InverterPowerOFFButtonClicked() +{ + mProgramHandle->InverterToggleButtonPressed(false); +} + +void CChaletGui::DoHarakiriButtonClicked() +{ + mProgramHandle->DoHarakiriButtonClicked(true); +} + +void CChaletGui::RebootCPUButtonClicked() +{ + mProgramHandle->RebootCPUButtonPressed(); +} + void CChaletGui::EnableHarakiriClicked(bool checked) + { + if(checked) + { + ui->mDoHarakiriButton->setEnabled(true); + } + else + { + ui->mDoHarakiriButton->setEnabled(false); + } + } diff --git a/Sources/Chalet/ChaletGui.h b/Sources/Chalet/ChaletGui.h index f923f81..4981606 100644 --- a/Sources/Chalet/ChaletGui.h +++ b/Sources/Chalet/ChaletGui.h @@ -2,6 +2,7 @@ #define CHALETGUI_H #include +#include "ChaletData.h" class CChalet; @@ -19,8 +20,19 @@ public: CChalet *mProgramHandle; + int UpdateChaletStatus(CChaletMainStatus Status); + private: Ui::CChaletGui *ui; + +public slots: + void WiFiONButtonClicked(); + void WiFiOFFButtonClicked(); + void InverterPowerONButtonClicked(); + void InverterPowerOFFButtonClicked(); + void RebootCPUButtonClicked(); + void DoHarakiriButtonClicked(); + void EnableHarakiriClicked(bool); }; #endif // CHALETGUI_H diff --git a/Sources/Chalet/ChaletGui.ui b/Sources/Chalet/ChaletGui.ui index 2c98d19..ec68576 100644 --- a/Sources/Chalet/ChaletGui.ui +++ b/Sources/Chalet/ChaletGui.ui @@ -6,18 +6,18 @@ 0 0 - 615 - 521 + 849 + 598 Form - + - 220 - 40 + 370 + 20 201 31 @@ -33,6 +33,188 @@ Chalet + + + + 350 + 90 + 211 + 16 + + + + Inverter Relay : OFF + + + + + + 360 + 130 + 131 + 16 + + + + ON + + + + + + 180 + 130 + 31 + 16 + + + + WiFi : + + + + + + 280 + 90 + 61 + 22 + + + + Turn OFF + + + + + + 280 + 130 + 61 + 23 + + + + Turn OFF + + + + + + 224 + 90 + 51 + 23 + + + + Turn ON + + + + + + 224 + 130 + 51 + 23 + + + + Turn ON + + + + + + 170 + 90 + 51 + 20 + + + + Inverter: + + + + + + 220 + 170 + 75 + 23 + + + + Reboot CPU + + + + + + 640 + 80 + 111 + 17 + + + + Enable HARAKIRI + + + + + + 620 + 50 + 151 + 81 + + + + HARAKIRI!!! + + + + + 20 + 50 + 101 + 23 + + + + DO HARAKIRI !!! + + + + + + + 170 + 210 + 241 + 16 + + + + Battery Voltage + + + groupBox + MainPageLabel + mInverterRlyStatusLabel + mWiFiModuleStatusLabel + mWiFiSectionLabel + mInverterRelayOFFBtn + mWiFiModuleOFFBtn + mInverterRelayONBtn + mWiFiModuleONBtn + mWiFiSectionLabel_2 + mRebootCPUBtn + mEnableHarakiriChkBx + mBatteryVoltageLabel diff --git a/Sources/Chalet/ChaletMasterCtrlInterface.cpp b/Sources/Chalet/ChaletMasterCtrlInterface.cpp index 47e1807..9ed44ea 100644 --- a/Sources/Chalet/ChaletMasterCtrlInterface.cpp +++ b/Sources/Chalet/ChaletMasterCtrlInterface.cpp @@ -1,7 +1,15 @@ #include "ChaletMasterCtrlInterface.h" +#include "ChaletData.h" +#include "CChalet.h" CChaletMasterCtrlInterface::CChaletMasterCtrlInterface(CChalet *ProgramHandle) { + mMyDeviceID = ID_CHALET_INTERFACE; + mNetworkPort = 2182; + mMasterCtrlIPAddress = "127.0.0.1"; + mNetworkCommSocket = 0; + mDeviceAddress = 1; + mProgramHandle = ProgramHandle; } @@ -37,7 +45,10 @@ int CChaletMasterCtrlInterface::DeviceFrameReceived(int TargetDeviceID, int Targ case CHALET_INTERFACE_GENERAL_STATUS_RESPONSE: { - qDebug("Chalet General Status received :)"); + // qDebug("Chalet General Status received :)"); + CChaletMainStatus Status; + Status.FromByteArray(Data); + mProgramHandle->ChaletStatusReceived(Status); break; } diff --git a/Sources/MasterCtrlInterface.cpp b/Sources/MasterCtrlInterface.cpp index 657259c..9681eab 100644 --- a/Sources/MasterCtrlInterface.cpp +++ b/Sources/MasterCtrlInterface.cpp @@ -2,7 +2,7 @@ CMasterCtrlInterface::CMasterCtrlInterface() { - + mNetworkCommSocket = 0; } int CMasterCtrlInterface::ConnectToMasterCtrl() diff --git a/Sources/ProtocolDefs.h b/Sources/ProtocolDefs.h index bb336ad..117615f 100644 --- a/Sources/ProtocolDefs.h +++ b/Sources/ProtocolDefs.h @@ -258,6 +258,13 @@ enum CHALET_INTERFACE_CMDS CHALET_INTERFACE_AC_POWER_SET_STATE_RESPONSE, CHALET_INTERFACE_BATTERY_VOLTAGE_REQUEST, CHALET_INTERFACE_BATTERY_VOLTAGE_RESPONSE, + CHALET_INTERFACE_WIFI_SET_STATE_REQUEST, + CHALET_INTERFACE_WIFI_SET_STATE_RESPONSE, + CHALET_INTERFACE_DO_HARAKIRI_REQUEST, + CHALET_INTERFACE_DO_HARAKIRI_RESPONSE, + CHALET_INTERFACE_REBOOT_CPU_REQUEST, + CHALET_INTERFACE_REBOOT_CPU_RESPONSE, + MAX_CHALET_INTERFACE_CMD }; diff --git a/Sources/SystemGui.cpp b/Sources/SystemGui.cpp index d62343e..e181203 100644 --- a/Sources/SystemGui.cpp +++ b/Sources/SystemGui.cpp @@ -8,6 +8,7 @@ CSystemGui::CSystemGui(QObject *parent) : QObject(parent) mSMSClient = new CSMSClient(mGui->mSMSGui,&mSettings.mVoipMSSettings); mSprinklers = new CSprinkler(mGui->mSprinklerGui); mAvReceiver = new CAvReceiver(mGui->mAvReceiverGui); + mChalet = new CChalet(mGui->mChaletGui); mSysTrayMgr = new CSystemTrayManager(); mSysTrayMgr->mProgramHandle=this; @@ -22,6 +23,7 @@ CSystemGui::~CSystemGui() delete mProgramSettings; delete mSysTrayMgr; delete mAvReceiver; + delete mChalet; } @@ -31,6 +33,7 @@ void CSystemGui::Start() mGui->show(); mSMSClient->Start(); mAvReceiver->Start(); + mChalet->Start(); } diff --git a/Sources/SystemGui.h b/Sources/SystemGui.h index af04a94..ac3c519 100644 --- a/Sources/SystemGui.h +++ b/Sources/SystemGui.h @@ -9,6 +9,7 @@ #include "Sprinkler.h" #include "AvReceiverGui.h" #include "AvReceiver.h" +#include "CChalet.h" class CSystemGui : public QObject @@ -33,6 +34,7 @@ private: CSystemTrayManager *mSysTrayMgr; CSprinkler *mSprinklers; CAvReceiver *mAvReceiver; + CChalet *mChalet; signals: diff --git a/SystemGui.pro b/SystemGui.pro index 46a6c35..0d7fb3e 100644 --- a/SystemGui.pro +++ b/SystemGui.pro @@ -29,7 +29,8 @@ INCLUDEPATH += Sources\ Sources/Chalet\ SOURCES += \ - Sources/Chalet/Chalet.cpp \ + Sources/Chalet/CChalet.cpp \ + Sources/Chalet/ChaletData.cpp \ Sources/Chalet/ChaletGui.cpp \ Sources/Chalet/ChaletMasterCtrlInterface.cpp \ Sources/GuiMain.cpp \ @@ -58,7 +59,8 @@ SOURCES += \ Sources/AvReceiver/AvReceiverData.cpp HEADERS += Sources/AbstractNetworkInterface.h \ - Sources/Chalet/Chalet.h \ + Sources/Chalet/CChalet.h \ + Sources/Chalet/ChaletData.h \ Sources/Chalet/ChaletGui.h \ Sources/Chalet/ChaletMasterCtrlInterface.h \ Sources/GuiMain.h \ diff --git a/SystemGui.pro.user.22 b/SystemGui.pro.user.22 new file mode 100644 index 0000000..68699b5 --- /dev/null +++ b/SystemGui.pro.user.22 @@ -0,0 +1,515 @@ + + + + + + EnvironmentId + {5a351af6-dc3b-4afc-af92-7da5e3a5cd12} + + + ProjectExplorer.Project.ActiveTarget + 0 + + + ProjectExplorer.Project.EditorSettings + + true + false + true + + Cpp + + CppGlobal + + + + QmlJS + + QmlJSGlobal + + + 2 + UTF-8 + false + 4 + false + 80 + true + true + 1 + true + false + 0 + true + true + 0 + 8 + true + 1 + true + true + true + false + + + + ProjectExplorer.Project.PluginSettings + + + -fno-delayed-template-parsing + + false + {a1060032-8f5a-4ffc-ae40-e101a45c521f} + + + + ProjectExplorer.Project.Target.0 + + Desktop Qt 5.14.2 MinGW 64-bit + Desktop Qt 5.14.2 MinGW 64-bit + qt.qt5.5142.win64_mingw73_kit + 0 + 0 + 0 + + D:/Main/PicDev/Projets/MasterCtrl/SystemGui + + + true + QtProjectManager.QMakeBuildStep + true + + false + false + false + + + true + Qt4ProjectManager.MakeStep + + false + + + false + + 2 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + + true + clean + + false + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + Debug + Qt4ProjectManager.Qt4BuildConfiguration + 2 + + + D:/Main/PicDev/Projets/MasterCtrl/SystemGui + + + true + QtProjectManager.QMakeBuildStep + false + + false + false + true + + + true + Qt4ProjectManager.MakeStep + + false + + + false + + 2 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + + true + clean + + false + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + Release + Qt4ProjectManager.Qt4BuildConfiguration + 0 + + + D:/Main/PicDev/Projets/MasterCtrl/build-SystemGui-Desktop_Qt_5_14_2_MinGW_64_bit-Profile + + + true + QtProjectManager.QMakeBuildStep + true + + false + true + true + + + true + Qt4ProjectManager.MakeStep + + false + + + false + + 2 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + + true + clean + + false + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + Profile + Qt4ProjectManager.Qt4BuildConfiguration + 0 + + 3 + + + 0 + Deploy + Deploy + ProjectExplorer.BuildSteps.Deploy + + 1 + ProjectExplorer.DefaultDeployConfiguration + + 1 + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + false + false + 1000 + + true + + false + false + false + false + true + 0.01 + 10 + true + kcachegrind + 1 + 25 + + 1 + true + false + true + valgrind + + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + + 2 + + Qt4ProjectManager.Qt4RunConfiguration:D:/Main/PicDev/Projets/MasterCtrl/SystemGui/SystemGui.pro + D:/Main/PicDev/Projets/MasterCtrl/SystemGui/SystemGui.pro + + false + + false + true + true + false + false + true + + D:/Main/PicDev/Projets/MasterCtrl/SystemGui + + 1 + + + + ProjectExplorer.Project.Target.1 + + Qt 4.8.7 + Qt 4.8.7 + {8820e404-d75e-4d7e-80ff-354d5dfc06d1} + 0 + 0 + 0 + + D:/Main/PicDev/Projets/MasterCtrl/build-SystemGui-Qt_4_8_7-Debug + + + true + QtProjectManager.QMakeBuildStep + false + + false + false + false + + + true + Qt4ProjectManager.MakeStep + + false + + + false + + 2 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + + true + clean + + false + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + Debug + Qt4ProjectManager.Qt4BuildConfiguration + 2 + + + D:/Main/PicDev/Projets/MasterCtrl/build-SystemGui-Qt_4_8_7-Release + + + true + QtProjectManager.QMakeBuildStep + false + + false + false + false + + + true + Qt4ProjectManager.MakeStep + + false + + + false + + 2 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + + true + clean + + false + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + Release + Qt4ProjectManager.Qt4BuildConfiguration + 0 + + 2 + + + 0 + Deploy + Deploy + ProjectExplorer.BuildSteps.Deploy + + 1 + ProjectExplorer.DefaultDeployConfiguration + + 1 + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + false + false + 1000 + + true + + false + false + false + false + true + 0.01 + 10 + true + kcachegrind + 1 + 25 + + 1 + true + false + true + valgrind + + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + + 2 + + Qt4ProjectManager.Qt4RunConfiguration:D:/Main/PicDev/Projets/MasterCtrl/SystemGui/SystemGui.pro + D:/Main/PicDev/Projets/MasterCtrl/SystemGui/SystemGui.pro + + false + + false + true + true + false + false + true + D:/Main/PicDev/Projets/MasterCtrl/SystemGui + + + 1 + + + + ProjectExplorer.Project.TargetCount + 2 + + + ProjectExplorer.Project.Updater.FileVersion + 22 + + + Version + 22 + + diff --git a/compile_commands.json b/compile_commands.json new file mode 100644 index 0000000..ba40a91 --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,2612 @@ +[ +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\Chalet\\ChaletGui.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet/ChaletGui.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\Chalet\\ChaletMasterCtrlInterface.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet/ChaletMasterCtrlInterface.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\GuiMain.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/GuiMain.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\main.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/main.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\NetworkProtocol.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/NetworkProtocol.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\ProgramSettings.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/ProgramSettings.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SystemGui.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SystemGui.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\SMSConversation.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/SMSConversation.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\SMSDatabase.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/SMSDatabase.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\SMSGui.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/SMSGui.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\SMSMessage.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/SMSMessage.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\SMSClient.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/SMSClient.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\SMSMasterCtrlInterface.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/SMSMasterCtrlInterface.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\MasterCtrlInterface.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/MasterCtrlInterface.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\Contact.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/Contact.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\ContactRepository.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/ContactRepository.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SystemTrayManager.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SystemTrayManager.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\Sprinkler\\SprinklerGui.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler/SprinklerGui.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\ToggleSwitch.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/ToggleSwitch.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\Sprinkler\\Sprinkler.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler/Sprinkler.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\Sprinkler\\SprinklerMasterCtrlInterface.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler/SprinklerMasterCtrlInterface.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\Sprinkler\\SprinklerDevice.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler/SprinklerDevice.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\AvReceiver\\AvReceiverGui.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver/AvReceiverGui.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\AvReceiver\\AvReceiver.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver/AvReceiver.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\AvReceiver\\AvReceiverNetworkCtrlInterface.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver/AvReceiverNetworkCtrlInterface.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\AvReceiver\\AvReceiverData.cpp" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver/AvReceiverData.cpp" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\AbstractNetworkInterface.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AbstractNetworkInterface.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\Chalet\\ChaletGui.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet/ChaletGui.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\Chalet\\ChaletMasterCtrlInterface.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet/ChaletMasterCtrlInterface.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\GuiMain.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/GuiMain.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\NetworkProtocol.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/NetworkProtocol.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\ProgramSettings.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/ProgramSettings.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\ProtocolDefs.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/ProtocolDefs.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SystemGui.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SystemGui.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\SMSConversation.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/SMSConversation.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\SMSDatabase.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/SMSDatabase.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\SMSGui.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/SMSGui.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\SMSMessage.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/SMSMessage.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\SMSClient.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/SMSClient.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\SMSMasterCtrlInterface.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/SMSMasterCtrlInterface.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\MasterCtrlInterface.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/MasterCtrlInterface.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\Contact.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/Contact.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SMSClient\\ContactRepository.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient/ContactRepository.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\SystemTrayManager.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SystemTrayManager.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\Sprinkler\\SprinklerGui.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler/SprinklerGui.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\ToggleSwitch.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/ToggleSwitch.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\Sprinkler\\Sprinkler.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler/Sprinkler.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\Sprinkler\\SprinklerDevice.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler/SprinklerDevice.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\Sprinkler\\SprinklerMasterCtrlInterface.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler/SprinklerMasterCtrlInterface.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\AvReceiver\\AvReceiverGui.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver/AvReceiverGui.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\AvReceiver\\AvReceiver.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver/AvReceiver.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\AvReceiver\\AvReceiverNetworkCtrlInterface.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver/AvReceiverNetworkCtrlInterface.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\Sources\\AvReceiver\\AvReceiverData.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver/AvReceiverData.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\ui_SprinklerGui.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/ui_SprinklerGui.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\ui_AvReceiverGui.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/ui_AvReceiverGui.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\ui_SMSGui.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/ui_SMSGui.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\ui_ChaletGui.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/ui_ChaletGui.h" +}, +{ + "arguments": [ + "C:/Qt/Qt5.14.2/Tools/mingw730_64/bin/g++.exe", + "-c", + "--target=x86_64-w64-mingw32", + "-m64", + "-fno-keep-inline-dllexport", + "-g", + "-Wall", + "-Wextra", + "-Wextra", + "-fexceptions", + "-mthreads", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/SMSClient", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Sprinkler", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/AvReceiver", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/Sources/Chalet", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtWidgets", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtGui", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtANGLE", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtNetwork", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/include/QtCore", + "-ID:/Main/PicDev/Projets/MasterCtrl/SystemGui/debug", + "-IC:/Qt/Qt5.14.2/5.14.2/mingw73_64/mkspecs/win32-g++", + "-DUNICODE", + "-D_UNICODE", + "-DWIN32", + "-DMINGW_HAS_SECURE_API", + "-DQT_DEPRECATED_WARNINGS", + "-DQT_QML_DEBUG", + "-DQT_WIDGETS_LIB", + "-DQT_GUI_LIB", + "-DQT_NETWORK_LIB", + "-DQT_CORE_LIB", + "-DQT_NEEDS_QMAIN", + "-x", + "c++-header", + "D:\\Main\\PicDev\\Projets\\MasterCtrl\\SystemGui\\ui_SprinklerDeviceGuiItem.h" + ], + "directory": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui", + "file": "D:/Main/PicDev/Projets/MasterCtrl/SystemGui/ui_SprinklerDeviceGuiItem.h" +} +] \ No newline at end of file diff --git a/ui_ChaletGui.h b/ui_ChaletGui.h index 7ef73c4..73c0b3d 100644 --- a/ui_ChaletGui.h +++ b/ui_ChaletGui.h @@ -11,7 +11,10 @@ #include #include +#include +#include #include +#include #include QT_BEGIN_NAMESPACE @@ -19,21 +22,86 @@ QT_BEGIN_NAMESPACE class Ui_CChaletGui { public: - QLabel *label; + QLabel *MainPageLabel; + QLabel *mInverterRlyStatusLabel; + QLabel *mWiFiModuleStatusLabel; + QLabel *mWiFiSectionLabel; + QPushButton *mInverterRelayOFFBtn; + QPushButton *mWiFiModuleOFFBtn; + QPushButton *mInverterRelayONBtn; + QPushButton *mWiFiModuleONBtn; + QLabel *mWiFiSectionLabel_2; + QPushButton *mRebootCPUBtn; + QCheckBox *mEnableHarakiriChkBx; + QGroupBox *groupBox; + QPushButton *mDoHarakiriButton; + QLabel *mBatteryVoltageLabel; void setupUi(QWidget *CChaletGui) { if (CChaletGui->objectName().isEmpty()) CChaletGui->setObjectName(QString::fromUtf8("CChaletGui")); - CChaletGui->resize(615, 521); - label = new QLabel(CChaletGui); - label->setObjectName(QString::fromUtf8("label")); - label->setGeometry(QRect(220, 40, 201, 31)); + CChaletGui->resize(849, 598); + MainPageLabel = new QLabel(CChaletGui); + MainPageLabel->setObjectName(QString::fromUtf8("MainPageLabel")); + MainPageLabel->setGeometry(QRect(370, 20, 201, 31)); QFont font; font.setPointSize(12); font.setBold(true); font.setWeight(75); - label->setFont(font); + MainPageLabel->setFont(font); + mInverterRlyStatusLabel = new QLabel(CChaletGui); + mInverterRlyStatusLabel->setObjectName(QString::fromUtf8("mInverterRlyStatusLabel")); + mInverterRlyStatusLabel->setGeometry(QRect(350, 90, 211, 16)); + mWiFiModuleStatusLabel = new QLabel(CChaletGui); + mWiFiModuleStatusLabel->setObjectName(QString::fromUtf8("mWiFiModuleStatusLabel")); + mWiFiModuleStatusLabel->setGeometry(QRect(360, 130, 131, 16)); + mWiFiSectionLabel = new QLabel(CChaletGui); + mWiFiSectionLabel->setObjectName(QString::fromUtf8("mWiFiSectionLabel")); + mWiFiSectionLabel->setGeometry(QRect(180, 130, 31, 16)); + mInverterRelayOFFBtn = new QPushButton(CChaletGui); + mInverterRelayOFFBtn->setObjectName(QString::fromUtf8("mInverterRelayOFFBtn")); + mInverterRelayOFFBtn->setGeometry(QRect(280, 90, 61, 22)); + mWiFiModuleOFFBtn = new QPushButton(CChaletGui); + mWiFiModuleOFFBtn->setObjectName(QString::fromUtf8("mWiFiModuleOFFBtn")); + mWiFiModuleOFFBtn->setGeometry(QRect(280, 130, 61, 23)); + mInverterRelayONBtn = new QPushButton(CChaletGui); + mInverterRelayONBtn->setObjectName(QString::fromUtf8("mInverterRelayONBtn")); + mInverterRelayONBtn->setGeometry(QRect(224, 90, 51, 23)); + mWiFiModuleONBtn = new QPushButton(CChaletGui); + mWiFiModuleONBtn->setObjectName(QString::fromUtf8("mWiFiModuleONBtn")); + mWiFiModuleONBtn->setGeometry(QRect(224, 130, 51, 23)); + mWiFiSectionLabel_2 = new QLabel(CChaletGui); + mWiFiSectionLabel_2->setObjectName(QString::fromUtf8("mWiFiSectionLabel_2")); + mWiFiSectionLabel_2->setGeometry(QRect(170, 90, 51, 20)); + mRebootCPUBtn = new QPushButton(CChaletGui); + mRebootCPUBtn->setObjectName(QString::fromUtf8("mRebootCPUBtn")); + mRebootCPUBtn->setGeometry(QRect(220, 170, 75, 23)); + mEnableHarakiriChkBx = new QCheckBox(CChaletGui); + mEnableHarakiriChkBx->setObjectName(QString::fromUtf8("mEnableHarakiriChkBx")); + mEnableHarakiriChkBx->setGeometry(QRect(640, 80, 111, 17)); + groupBox = new QGroupBox(CChaletGui); + groupBox->setObjectName(QString::fromUtf8("groupBox")); + groupBox->setGeometry(QRect(620, 50, 151, 81)); + mDoHarakiriButton = new QPushButton(groupBox); + mDoHarakiriButton->setObjectName(QString::fromUtf8("mDoHarakiriButton")); + mDoHarakiriButton->setGeometry(QRect(20, 50, 101, 23)); + mBatteryVoltageLabel = new QLabel(CChaletGui); + mBatteryVoltageLabel->setObjectName(QString::fromUtf8("mBatteryVoltageLabel")); + mBatteryVoltageLabel->setGeometry(QRect(170, 210, 241, 16)); + groupBox->raise(); + MainPageLabel->raise(); + mInverterRlyStatusLabel->raise(); + mWiFiModuleStatusLabel->raise(); + mWiFiSectionLabel->raise(); + mInverterRelayOFFBtn->raise(); + mWiFiModuleOFFBtn->raise(); + mInverterRelayONBtn->raise(); + mWiFiModuleONBtn->raise(); + mWiFiSectionLabel_2->raise(); + mRebootCPUBtn->raise(); + mEnableHarakiriChkBx->raise(); + mBatteryVoltageLabel->raise(); retranslateUi(CChaletGui); @@ -43,7 +111,20 @@ public: void retranslateUi(QWidget *CChaletGui) { CChaletGui->setWindowTitle(QCoreApplication::translate("CChaletGui", "Form", nullptr)); - label->setText(QCoreApplication::translate("CChaletGui", "Chalet", nullptr)); + MainPageLabel->setText(QCoreApplication::translate("CChaletGui", "Chalet", nullptr)); + mInverterRlyStatusLabel->setText(QCoreApplication::translate("CChaletGui", "Inverter Relay : OFF", nullptr)); + mWiFiModuleStatusLabel->setText(QCoreApplication::translate("CChaletGui", "ON", nullptr)); + mWiFiSectionLabel->setText(QCoreApplication::translate("CChaletGui", "WiFi :", nullptr)); + mInverterRelayOFFBtn->setText(QCoreApplication::translate("CChaletGui", "Turn OFF", nullptr)); + mWiFiModuleOFFBtn->setText(QCoreApplication::translate("CChaletGui", "Turn OFF", nullptr)); + mInverterRelayONBtn->setText(QCoreApplication::translate("CChaletGui", "Turn ON", nullptr)); + mWiFiModuleONBtn->setText(QCoreApplication::translate("CChaletGui", "Turn ON", nullptr)); + mWiFiSectionLabel_2->setText(QCoreApplication::translate("CChaletGui", "Inverter:", nullptr)); + mRebootCPUBtn->setText(QCoreApplication::translate("CChaletGui", "Reboot CPU", nullptr)); + mEnableHarakiriChkBx->setText(QCoreApplication::translate("CChaletGui", "Enable HARAKIRI", nullptr)); + groupBox->setTitle(QCoreApplication::translate("CChaletGui", "HARAKIRI!!!", nullptr)); + mDoHarakiriButton->setText(QCoreApplication::translate("CChaletGui", "DO HARAKIRI !!!", nullptr)); + mBatteryVoltageLabel->setText(QCoreApplication::translate("CChaletGui", "Battery Voltage", nullptr)); } // retranslateUi }; diff --git a/ui_SMSGui.h b/ui_SMSGui.h index d7f3de2..8102d20 100644 --- a/ui_SMSGui.h +++ b/ui_SMSGui.h @@ -1,7 +1,7 @@ /******************************************************************************** ** Form generated from reading UI file 'SMSGui.ui' ** -** Created by: Qt User Interface Compiler version 5.5.0 +** Created by: Qt User Interface Compiler version 5.14.2 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ @@ -10,9 +10,7 @@ #define UI_SMSGUI_H #include -#include #include -#include #include #include #include @@ -44,7 +42,7 @@ public: void setupUi(QWidget *CSMSGui) { if (CSMSGui->objectName().isEmpty()) - CSMSGui->setObjectName(QStringLiteral("CSMSGui")); + CSMSGui->setObjectName(QString::fromUtf8("CSMSGui")); CSMSGui->resize(803, 785); QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); sizePolicy.setHorizontalStretch(0); @@ -52,9 +50,9 @@ public: sizePolicy.setHeightForWidth(CSMSGui->sizePolicy().hasHeightForWidth()); CSMSGui->setSizePolicy(sizePolicy); gridLayout_2 = new QGridLayout(CSMSGui); - gridLayout_2->setObjectName(QStringLiteral("gridLayout_2")); + gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2")); mContactPic = new QLabel(CSMSGui); - mContactPic->setObjectName(QStringLiteral("mContactPic")); + mContactPic->setObjectName(QString::fromUtf8("mContactPic")); QSizePolicy sizePolicy1(QSizePolicy::Fixed, QSizePolicy::Fixed); sizePolicy1.setHorizontalStretch(0); sizePolicy1.setVerticalStretch(0); @@ -66,38 +64,38 @@ public: gridLayout_2->addWidget(mContactPic, 0, 0, 1, 1); mContactName = new QLabel(CSMSGui); - mContactName->setObjectName(QStringLiteral("mContactName")); + mContactName->setObjectName(QString::fromUtf8("mContactName")); gridLayout_2->addWidget(mContactName, 0, 1, 1, 2); mConversationText = new QTextBrowser(CSMSGui); - mConversationText->setObjectName(QStringLiteral("mConversationText")); + mConversationText->setObjectName(QString::fromUtf8("mConversationText")); gridLayout_2->addWidget(mConversationText, 1, 0, 1, 2); mContactsTreeWidget = new QTreeWidget(CSMSGui); QTreeWidgetItem *__qtreewidgetitem = new QTreeWidgetItem(); - __qtreewidgetitem->setText(0, QStringLiteral("1")); + __qtreewidgetitem->setText(0, QString::fromUtf8("1")); mContactsTreeWidget->setHeaderItem(__qtreewidgetitem); - mContactsTreeWidget->setObjectName(QStringLiteral("mContactsTreeWidget")); + mContactsTreeWidget->setObjectName(QString::fromUtf8("mContactsTreeWidget")); mContactsTreeWidget->setIndentation(2); mContactsTreeWidget->header()->setVisible(false); gridLayout_2->addWidget(mContactsTreeWidget, 1, 2, 2, 1); mSMSEditFrame = new QFrame(CSMSGui); - mSMSEditFrame->setObjectName(QStringLiteral("mSMSEditFrame")); + mSMSEditFrame->setObjectName(QString::fromUtf8("mSMSEditFrame")); mSMSEditFrame->setFrameShape(QFrame::StyledPanel); mSMSEditFrame->setFrameShadow(QFrame::Raised); gridLayout = new QGridLayout(mSMSEditFrame); - gridLayout->setObjectName(QStringLiteral("gridLayout")); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); mSMSSendBtn = new QPushButton(mSMSEditFrame); - mSMSSendBtn->setObjectName(QStringLiteral("mSMSSendBtn")); + mSMSSendBtn->setObjectName(QString::fromUtf8("mSMSSendBtn")); gridLayout->addWidget(mSMSSendBtn, 3, 2, 1, 1); mSMSEdit = new QTextEdit(mSMSEditFrame); - mSMSEdit->setObjectName(QStringLiteral("mSMSEdit")); + mSMSEdit->setObjectName(QString::fromUtf8("mSMSEdit")); gridLayout->addWidget(mSMSEdit, 2, 0, 2, 1); @@ -106,7 +104,7 @@ public: gridLayout->addItem(horizontalSpacer, 3, 3, 1, 1); mSMSMessageStatsLabel = new QLabel(mSMSEditFrame); - mSMSMessageStatsLabel->setObjectName(QStringLiteral("mSMSMessageStatsLabel")); + mSMSMessageStatsLabel->setObjectName(QString::fromUtf8("mSMSMessageStatsLabel")); mSMSMessageStatsLabel->setMinimumSize(QSize(200, 75)); gridLayout->addWidget(mSMSMessageStatsLabel, 2, 2, 1, 2); @@ -122,11 +120,11 @@ public: void retranslateUi(QWidget *CSMSGui) { - CSMSGui->setWindowTitle(QApplication::translate("CSMSGui", "Form", 0)); - mContactPic->setText(QApplication::translate("CSMSGui", "TextLabel", 0)); - mContactName->setText(QApplication::translate("CSMSGui", "TextLabel", 0)); - mSMSSendBtn->setText(QApplication::translate("CSMSGui", "Send", 0)); - mSMSMessageStatsLabel->setText(QApplication::translate("CSMSGui", "TextLabel", 0)); + CSMSGui->setWindowTitle(QCoreApplication::translate("CSMSGui", "Form", nullptr)); + mContactPic->setText(QCoreApplication::translate("CSMSGui", "TextLabel", nullptr)); + mContactName->setText(QCoreApplication::translate("CSMSGui", "TextLabel", nullptr)); + mSMSSendBtn->setText(QCoreApplication::translate("CSMSGui", "Send", nullptr)); + mSMSMessageStatsLabel->setText(QCoreApplication::translate("CSMSGui", "TextLabel", nullptr)); } // retranslateUi };