diff --git a/src/Client2/fly_land/CommunicationUI.cpp b/src/Client2/fly_land/CommunicationUI.cpp new file mode 100644 index 0000000..ae19db6 --- /dev/null +++ b/src/Client2/fly_land/CommunicationUI.cpp @@ -0,0 +1,34 @@ +#include "CommunicationUI.h" +#include "ui_CommunicationUI.h" +#include +#include + +CommunicationUI::CommunicationUI(QWidget* parent): + QWidget(parent), + ui(new Ui::CommunicationUI) +{ + ui->setupUi(this); + setWindowTitle("远程交互救助服务"); + resize(600,400); + + // 创建视频播放器 + QMediaPlayer* player = new QMediaPlayer(this); + + // 创建视频播放窗口 + QVideoWidget* videoWidget = new QVideoWidget(this); + videoWidget->setGeometry(50, 50, 500, 300); // 设置视频播放窗口的位置和大小 + + // 设置视频播放器的输出窗口 + player->setVideoOutput(videoWidget); + + // 加载视频文件 + player->setSource(QUrl::fromLocalFile("C:\\Users\\86185\\Desktop\\WeChat_20240428194941.mp4")); + + // 播放视频 + player->play(); +} + +CommunicationUI::~CommunicationUI() +{ + delete ui; +} diff --git a/src/Client2/fly_land/CommunicationUI.h b/src/Client2/fly_land/CommunicationUI.h new file mode 100644 index 0000000..43ed237 --- /dev/null +++ b/src/Client2/fly_land/CommunicationUI.h @@ -0,0 +1,30 @@ +#ifndef COMMUNICATIONUI_H +#define COMMUNICATIONUI_H + +#include + +QT_BEGIN_NAMESPACE //qt的命名空间 +namespace Ui { +class CommunicationUI; //声明ui命名空间下的类 +} +QT_END_NAMESPACE + +class CommunicationUI : public QWidget +{ + // Q_OBJECT宏用于提供Qt信号槽和元对象系统服务 + // 它必须限定为私有访问权限 + Q_OBJECT + +public: + CommunicationUI(QWidget *parent = nullptr); + ~CommunicationUI(); + + +private slots: + +private: + // 创建Ui::CommunicationUI类型的指针,用于操作ui界面及其控件 + Ui::CommunicationUI *ui; +}; + +#endif // COMMUNICATIONUI_H diff --git a/src/Client2/fly_land/CommunicationUI.ui b/src/Client2/fly_land/CommunicationUI.ui new file mode 100644 index 0000000..d436597 --- /dev/null +++ b/src/Client2/fly_land/CommunicationUI.ui @@ -0,0 +1,19 @@ + + + CommunicationUI + + + + 0 + 0 + 400 + 300 + + + + Form + + + + + diff --git a/src/Client2/fly_land/DogControlUI.cpp b/src/Client2/fly_land/DogControlUI.cpp new file mode 100644 index 0000000..463fb05 --- /dev/null +++ b/src/Client2/fly_land/DogControlUI.cpp @@ -0,0 +1,34 @@ +#include "DogControlUI.h" +#include "ui_DogControlUI.h" +#include +#include + +DogControlUI::DogControlUI(QWidget* parent): + QWidget(parent), + ui(new Ui::DogControlUI) +{ + ui->setupUi(this); + setWindowTitle("控制机器狗"); + resize(600,400); + + // 创建视频播放器 + QMediaPlayer* player = new QMediaPlayer(this); + + // 创建视频播放窗口 + QVideoWidget* videoWidget = new QVideoWidget(this); + videoWidget->setGeometry(50, 50, 500, 300); // 设置视频播放窗口的位置和大小 + + // 设置视频播放器的输出窗口 + player->setVideoOutput(videoWidget); + + // 加载视频文件 + player->setSource(QUrl::fromLocalFile("C:\\Users\\86185\\Desktop\\WeChat_20240428194941.mp4")); + + // 播放视频 + player->play(); +} + +DogControlUI::~DogControlUI() +{ + delete ui; +} diff --git a/src/Client2/fly_land/DogControlUI.h b/src/Client2/fly_land/DogControlUI.h new file mode 100644 index 0000000..085cf58 --- /dev/null +++ b/src/Client2/fly_land/DogControlUI.h @@ -0,0 +1,32 @@ +#ifndef DOGCONTROLUI_H +#define DOGCONTROLUI_H + + +#include + +QT_BEGIN_NAMESPACE //qt的命名空间 +namespace Ui { +class DogControlUI; //声明ui命名空间下的类 +} +QT_END_NAMESPACE + +class DogControlUI : public QWidget +{ + // Q_OBJECT宏用于提供Qt信号槽和元对象系统服务 + // 它必须限定为私有访问权限 + Q_OBJECT + +public: + DogControlUI(QWidget *parent = nullptr); + ~DogControlUI(); + + +private slots: + +private: + // 创建Ui::DogControlUI类型的指针,用于操作ui界面及其控件 + Ui::DogControlUI *ui; +}; + + +#endif // DOGCONTROLUI_H diff --git a/src/Client2/fly_land/DogControlUI.ui b/src/Client2/fly_land/DogControlUI.ui new file mode 100644 index 0000000..cc0f1d5 --- /dev/null +++ b/src/Client2/fly_land/DogControlUI.ui @@ -0,0 +1,19 @@ + + + DogControlUI + + + + 0 + 0 + 400 + 300 + + + + Form + + + + + diff --git a/src/Client2/fly_land/GuidingUI.cpp b/src/Client2/fly_land/GuidingUI.cpp new file mode 100644 index 0000000..2f44e69 --- /dev/null +++ b/src/Client2/fly_land/GuidingUI.cpp @@ -0,0 +1,56 @@ +#include "GuidingUI.h" +#include "ui_GuidingUI.h" +#include +#include +#include +#include +#include + +GuidingUI::GuidingUI(QWidget *parent) + : QWidget(parent) + , ui(new Ui::GuidingUI) +{ + ui->setupUi(this); + setWindowTitle("空地协同伤情态势感知分析系统"); + resize(600,400); + + +} + + +GuidingUI::~GuidingUI() +{ + delete ui; +} + + + +void GuidingUI::on_Communication_clicked() +{ + //QMessageBox::information(this,"远程交互界面","视频 语音"); + CommunicationUI* communication = new CommunicationUI; + communication->show(); +} + +void GuidingUI::on_ControlDog_clicked() +{ + //QMessageBox::information(this,"控制机器狗","输入正确的指令"); + DogControlUI* dogUI = new DogControlUI; + dogUI->show(); + +} + +void GuidingUI::on_ControlUAV_clicked() +{ + //QMessageBox::information(this,"控制无人机","输入正确的指令"); + UAVControlUI* uavUI = new UAVControlUI; + uavUI->show(); +} + +void GuidingUI::on_InjuryDisplay_clicked() +{ + //QMessageBox::information(this,"伤情总览","呈现伤情"); + InjuryDisplayUI* injuryDisplay = new InjuryDisplayUI; + injuryDisplay->show(); +} + diff --git a/src/Client2/fly_land/GuidingUI.h b/src/Client2/fly_land/GuidingUI.h new file mode 100644 index 0000000..636702c --- /dev/null +++ b/src/Client2/fly_land/GuidingUI.h @@ -0,0 +1,34 @@ +#ifndef GUIDINGUI_H +#define GUIDINGUI_H + +#include + + +QT_BEGIN_NAMESPACE //qt的命名空间 +namespace Ui { +class GuidingUI; //声明ui命名空间下的类 +} +QT_END_NAMESPACE + +class GuidingUI : public QWidget +{ + // Q_OBJECT宏用于提供Qt信号槽和元对象系统服务 + // 它必须限定为私有访问权限 + Q_OBJECT + +public: + GuidingUI(QWidget *parent = nullptr); + ~GuidingUI(); + + +private slots: + void on_Communication_clicked(); + void on_ControlDog_clicked(); + void on_ControlUAV_clicked(); + void on_InjuryDisplay_clicked(); + +private: + // 创建Ui::GuidingUI类型的指针,用于操作ui界面及其控件 + Ui::GuidingUI *ui; +}; +#endif // GUIDINGUI_H diff --git a/src/Client2/fly_land/GuidingUI.ui b/src/Client2/fly_land/GuidingUI.ui new file mode 100644 index 0000000..515edf3 --- /dev/null +++ b/src/Client2/fly_land/GuidingUI.ui @@ -0,0 +1,92 @@ + + + GuidingUI + + + + 0 + 0 + 609 + 450 + + + + Widget + + + + + 150 + 30 + 301 + 361 + + + + + 0 + + + + + 远程交互救助 + + + + 12 + 30 + + + + + + + + 控制无人机 + + + + 12 + 30 + + + + + + + + 控制机器狗 + + + + 12 + 30 + + + + + + + + + 0 + 0 + + + + 伤情态势显示 + + + + 12 + 40 + + + + + + + + + + diff --git a/src/Client2/fly_land/InjuryAnalysisUI.cpp b/src/Client2/fly_land/InjuryAnalysisUI.cpp new file mode 100644 index 0000000..2ac2d6e --- /dev/null +++ b/src/Client2/fly_land/InjuryAnalysisUI.cpp @@ -0,0 +1,16 @@ +#include "InjuryAnalysisUI.h" +#include "ui_InjuryAnalysisUI.h" + +InjuryAnalysisUI::InjuryAnalysisUI(QWidget* parent): + QWidget(parent), + ui(new Ui::InjuryAnalysisUI) +{ + ui->setupUi(this); + setWindowTitle("伤情态势分析界面"); + resize(600,400); +} + +InjuryAnalysisUI::~InjuryAnalysisUI() +{ + delete ui; +} diff --git a/src/Client2/fly_land/InjuryAnalysisUI.h b/src/Client2/fly_land/InjuryAnalysisUI.h new file mode 100644 index 0000000..995fce8 --- /dev/null +++ b/src/Client2/fly_land/InjuryAnalysisUI.h @@ -0,0 +1,32 @@ +#ifndef INJURYANALYSISUI_H +#define INJURYANALYSISUI_H + + +#include + +QT_BEGIN_NAMESPACE +namespace Ui { +class InjuryAnalysisUI; //声明ui命名空间下的类 +} +QT_END_NAMESPACE + +class InjuryAnalysisUI : public QWidget +{ + // Q_OBJECT宏用于提供Qt信号槽和元对象系统服务 + // 它必须限定为私有访问权限 + Q_OBJECT + +public: + InjuryAnalysisUI(QWidget *parent = nullptr); + ~InjuryAnalysisUI(); + + +private slots: + + +private: + // 创建Ui::InjuryAnalysisUI类型的指针,用于操作ui界面及其控件 + Ui::InjuryAnalysisUI *ui; +}; + +#endif // INJURYANALYSISUI_H diff --git a/src/Client2/fly_land/InjuryAnalysisUI.ui b/src/Client2/fly_land/InjuryAnalysisUI.ui new file mode 100644 index 0000000..f6ce41e --- /dev/null +++ b/src/Client2/fly_land/InjuryAnalysisUI.ui @@ -0,0 +1,32 @@ + + + InjuryAnalysisUI + + + + 0 + 0 + 400 + 300 + + + + Form + + + + + 140 + 50 + 91 + 51 + + + + 目前伤亡情况: + + + + + + diff --git a/src/Client2/fly_land/InjuryDatabase.cpp b/src/Client2/fly_land/InjuryDatabase.cpp new file mode 100644 index 0000000..e0ed8ff --- /dev/null +++ b/src/Client2/fly_land/InjuryDatabase.cpp @@ -0,0 +1,158 @@ +#include "InjuryDatabase.h" + +InjuryDatabase *InjuryDatabase::getInstance() +{ + static InjuryDatabase db; + return &db; +} + +InjuryDatabase::~InjuryDatabase() +{ + close(); +} + +//建立连接 +bool InjuryDatabase::open(const QString &dbName,const QString &userName,const QString &passwd) +{ + m_sqlDb.setHostName("localhost"); // 本地数据库 远程DB是:ipaddress + m_sqlDb.setPort(3306); // 设置端口号 + m_sqlDb.setDatabaseName(dbName); + m_sqlDb.setUserName(userName); + m_sqlDb.setPassword(passwd); + + if(!m_sqlDb.open()) + { + qDebug()<<"连接失败!"; + return false; + } + else + { + qDebug()<<"连接成功!"; + return true; + } +} + +//添加记录 +bool InjuryDatabase::add(const QString &tableName, const Injury &data) +{ + beginAddFiled(tableName); + addFiled("id"); + addFiled("injuryrank"); + addFiled("position"); + addFiled("flag"); + endAddFiled(); + + beginAddRow(); + addValue(data.id); + addValue(data.rank); + addValue(data.position); + addValue(data.flag); + endAddRow(); + + m_valueSql = m_valueSql.left(m_valueSql.length()-1); + QString sql; + sql = m_headerSql + m_valueSql; + return exec(sql); + +} + + +//查询所有记录 +bool InjuryDatabase::select(const QString &tableName, QList &result) +{ + QSqlQuery query(m_sqlDb); + + QString strQuery; + strQuery = "SELECT * FROM "; + strQuery += tableName; + + query.prepare(strQuery); + + bool isSuccess = query.exec(); + if(isSuccess) + { + while(query.next()) + { + QString id = query.value(0).toString(); + int rank = query.value(1).toInt(); + QString position = query.value(2).toString(); + int flag = query.value(3).toInt(); + + Injury data; + data.id = id; + data.rank = rank; + data.position = position; + data.flag = flag; + result.append(data); + } + } + + return isSuccess; +} + + + +void InjuryDatabase::close() +{ + m_sqlDb.close(); +} + + + +void InjuryDatabase::beginAddFiled(const QString &tableName) +{ + m_tableName = tableName; + m_fieldName.clear(); + m_headerSql.clear(); + m_valueSql.clear(); + m_fieldAdd = 0; +} + +void InjuryDatabase::addFiled(const QString &filedName) +{ + m_fieldName.append(filedName); +} + +void InjuryDatabase::endAddFiled() +{ + m_headerSql = QString("INSERT INTO %0 (%1) values").arg(m_tableName).arg(m_fieldName.join(",")); +} + +void InjuryDatabase::beginAddRow() +{ + m_valueSql += "("; +} + +void InjuryDatabase::addValue(const QVariant &value) +{ + m_valueSql += QString("\'%0\',").arg(value.toString()); + m_fieldAdd++; +} + +void InjuryDatabase::endAddRow() +{ + m_valueSql = m_valueSql.left(m_valueSql.length() - 1); + m_valueSql += "),"; +} + + +bool InjuryDatabase::exec(const QString &sql) +{ + bool isSuccess = false; + QSqlQuery query(m_sqlDb); + + query.prepare(sql); + qDebug()< +#include +#include +#include +#include +#include +#include + + +using namespace std; + + +struct Injury +{ + QString id; + int rank; + QString position; + int flag; +}; + +class InjuryDatabase +{ + // Q_OBJECT宏用于提供Qt信号槽和元对象系统服务 + // 它必须限定为私有访问权限 + //Q_OBJECT + +public: + static InjuryDatabase *getInstance(); + InjuryDatabase(); + ~InjuryDatabase(); + + //打开 + bool open(const QString &dbName,const QString &userName = QString(),const QString &passwd = QString()); + //添加数据记录 + bool add(const QString &tableName,const Injury &data); + //查询所有数据 + bool select(const QString &tableName,QList &result); + //关闭 + void close(); + +public: + Injury data; + + void ReturnInfo(Injury data); + + +private: + //开始添加字段 + void beginAddFiled(const QString &tableName); + + //添加字段 + void addFiled(const QString &filedName); + + //结束添加字段 + void endAddFiled(); + + //开始添加行 + void beginAddRow(); + + //添加字段值 + void addValue(const QVariant &value); + + //结束添加行 + void endAddRow(); + + //执行 + bool exec(const QString &sql); + + +private: + //数据库 + QSqlDatabase m_sqlDb; + + //表名 + QString m_tableName; + + //字段名 + QStringList m_fieldName; + + //头sql + QString m_headerSql; + + //值sql + QString m_valueSql; + + //已添加row数 + int m_fieldAdd = 0; + +}; + + + +#endif // INJURYDATABASE_H diff --git a/src/Client2/fly_land/InjuryDisplayUI.cpp b/src/Client2/fly_land/InjuryDisplayUI.cpp new file mode 100644 index 0000000..e9b7c4a --- /dev/null +++ b/src/Client2/fly_land/InjuryDisplayUI.cpp @@ -0,0 +1,35 @@ +#include "InjuryDisplayUI.h" +#include "ui_InjuryDisplayUI.h" +#include "InjuryAnalysisUI.h" +#include + +InjuryDisplayUI::InjuryDisplayUI(QWidget* parent): + QWidget(parent), + ui(new Ui::InjuryDisplayUI) +{ + ui->setupUi(this); + setWindowTitle("伤情态势展示界面"); +} + +InjuryDisplayUI::~InjuryDisplayUI() +{ + delete ui; +} + +void InjuryDisplayUI::on_InjuryAnaysis_clicked() +{ + InjuryAnalysisUI* injuryAnalysis = new InjuryAnalysisUI; + injuryAnalysis->show(); + +} + + +void InjuryDisplayUI::on_MapButton_clicked() +{ + QQuickItem *root = ui->quickWidget->rootObject();//拿到所有对象的列表 + auto labelqml = root->findChild("labelcpp");//名字要与main.qml中的 objectName: 'labelcpp' 相同 + QVariant ret; + QMetaObject::invokeMethod(labelqml, "setCoordinate", Q_ARG(QVariant, 22.65599), Q_ARG(QVariant, 113.92576)); + qDebug() << ret.toString(); +} + diff --git a/src/Client2/fly_land/InjuryDisplayUI.h b/src/Client2/fly_land/InjuryDisplayUI.h new file mode 100644 index 0000000..5083977 --- /dev/null +++ b/src/Client2/fly_land/InjuryDisplayUI.h @@ -0,0 +1,34 @@ +#ifndef INJURYDISPLAYUI_H +#define INJURYDISPLAYUI_H + +#include + +QT_BEGIN_NAMESPACE //qt的命名空间 +namespace Ui { +class InjuryDisplayUI; //声明ui命名空间下的类 +} +QT_END_NAMESPACE + +class InjuryDisplayUI : public QWidget +{ + // Q_OBJECT宏用于提供Qt信号槽和元对象系统服务 + // 它必须限定为私有访问权限 + Q_OBJECT + +public: + InjuryDisplayUI(QWidget *parent = nullptr); + ~InjuryDisplayUI(); + + +private slots: + + void on_InjuryAnaysis_clicked(); + + void on_MapButton_clicked(); + +private: + // 创建Ui::DogControlUI类型的指针,用于操作ui界面及其控件 + Ui::InjuryDisplayUI *ui; +}; + +#endif // INJURYDISPLAYUI_H diff --git a/src/Client2/fly_land/InjuryDisplayUI.ui b/src/Client2/fly_land/InjuryDisplayUI.ui new file mode 100644 index 0000000..b9d3676 --- /dev/null +++ b/src/Client2/fly_land/InjuryDisplayUI.ui @@ -0,0 +1,80 @@ + + + InjuryDisplayUI + + + + 0 + 0 + 600 + 370 + + + + Form + + + + + 510 + 10 + 81 + 31 + + + + 分析当前伤情 + + + + + + 210 + 330 + 161 + 31 + + + + 打印经纬度 + + + + + + 10 + 50 + 581 + 271 + + + + + + + 10 + 60 + 571 + 251 + + + + QQuickWidget::SizeRootObjectToView + + + + qrc:/map.qml + + + + + + + QQuickWidget + QWidget +
QtQuickWidgets/QQuickWidget
+
+
+ + +
diff --git a/src/Client2/fly_land/Resource.qrc b/src/Client2/fly_land/Resource.qrc new file mode 100644 index 0000000..8926530 --- /dev/null +++ b/src/Client2/fly_land/Resource.qrc @@ -0,0 +1,5 @@ + + + map.qml + + diff --git a/src/Client2/fly_land/UAVControlUI.cpp b/src/Client2/fly_land/UAVControlUI.cpp new file mode 100644 index 0000000..3dcfda8 --- /dev/null +++ b/src/Client2/fly_land/UAVControlUI.cpp @@ -0,0 +1,35 @@ +#include "UAVControlUI.h" +#include "ui_UAVControlUI.h" +#include +#include + +UAVControlUI::UAVControlUI(QWidget* parent): + QWidget(parent), + ui(new Ui::UAVControlUI) +{ + ui->setupUi(this); + setWindowTitle("控制无人机"); + resize(600,400); + + // 创建视频播放器 + QMediaPlayer* player = new QMediaPlayer(this); + + // 创建视频播放窗口 + QVideoWidget* videoWidget = new QVideoWidget(this); + videoWidget->setGeometry(50, 50, 500, 300); // 设置视频播放窗口的位置和大小 + + // 设置视频播放器的输出窗口 + player->setVideoOutput(videoWidget); + + // 加载视频文件 + player->setSource(QUrl::fromLocalFile("C:\\Users\\86185\\Desktop\\WeChat_20240428194941.mp4")); + + // 播放视频 + player->play(); + +} + +UAVControlUI::~UAVControlUI() +{ + delete ui; +} diff --git a/src/Client2/fly_land/UAVControlUI.h b/src/Client2/fly_land/UAVControlUI.h new file mode 100644 index 0000000..4e6cf90 --- /dev/null +++ b/src/Client2/fly_land/UAVControlUI.h @@ -0,0 +1,33 @@ +#ifndef UAVCONTROLUI_H +#define UAVCONTROLUI_H + + +#include + +QT_BEGIN_NAMESPACE //qt的命名空间 +namespace Ui { +class UAVControlUI; //声明ui命名空间下的类 +} +QT_END_NAMESPACE + +class UAVControlUI : public QWidget +{ + // Q_OBJECT宏用于提供Qt信号槽和元对象系统服务 + // 它必须限定为私有访问权限 + Q_OBJECT + +public: + UAVControlUI(QWidget *parent = nullptr); + ~UAVControlUI(); + + +private slots: + +private: + // 创建Ui::DogControlUI类型的指针,用于操作ui界面及其控件 + Ui::UAVControlUI *ui; +}; + + + +#endif // UAVCONTROLUI_H diff --git a/src/Client2/fly_land/UAVControlUI.ui b/src/Client2/fly_land/UAVControlUI.ui new file mode 100644 index 0000000..92060d1 --- /dev/null +++ b/src/Client2/fly_land/UAVControlUI.ui @@ -0,0 +1,19 @@ + + + UAVControlUI + + + + 0 + 0 + 400 + 300 + + + + Form + + + + + diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qmake.stash b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qmake.stash new file mode 100644 index 0000000..1966918 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qmake.stash @@ -0,0 +1,21 @@ +QMAKE_CXX.QT_COMPILER_STDCXX = 201703L +QMAKE_CXX.QMAKE_GCC_MAJOR_VERSION = 11 +QMAKE_CXX.QMAKE_GCC_MINOR_VERSION = 2 +QMAKE_CXX.QMAKE_GCC_PATCH_VERSION = 0 +QMAKE_CXX.COMPILER_MACROS = \ + QT_COMPILER_STDCXX \ + QMAKE_GCC_MAJOR_VERSION \ + QMAKE_GCC_MINOR_VERSION \ + QMAKE_GCC_PATCH_VERSION +QMAKE_CXX.INCDIRS = \ + D:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++ \ + D:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32 \ + D:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward \ + D:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include \ + D:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed \ + D:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include +QMAKE_CXX.LIBDIRS = \ + D:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0 \ + D:/Qt/Tools/mingw1120_64/lib/gcc \ + D:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/lib \ + D:/Qt/Tools/mingw1120_64/lib diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/CommunicationUI.cpp.A46BCCD35B0DF69F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/CommunicationUI.cpp.A46BCCD35B0DF69F.idx new file mode 100644 index 0000000..b137371 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/CommunicationUI.cpp.A46BCCD35B0DF69F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/CommunicationUI.h.85CB0FB5D7C2F437.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/CommunicationUI.h.85CB0FB5D7C2F437.idx new file mode 100644 index 0000000..16911f5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/CommunicationUI.h.85CB0FB5D7C2F437.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/DogControlUI.cpp.672043AC40AF5E6E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/DogControlUI.cpp.672043AC40AF5E6E.idx new file mode 100644 index 0000000..e1ca031 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/DogControlUI.cpp.672043AC40AF5E6E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/DogControlUI.h.7CB45574CDE82EDC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/DogControlUI.h.7CB45574CDE82EDC.idx new file mode 100644 index 0000000..4328a08 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/DogControlUI.h.7CB45574CDE82EDC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/GuidingUI.cpp.705666DBC1784D1D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/GuidingUI.cpp.705666DBC1784D1D.idx new file mode 100644 index 0000000..988a2b7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/GuidingUI.cpp.705666DBC1784D1D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/GuidingUI.h.B70720121B507343.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/GuidingUI.h.B70720121B507343.idx new file mode 100644 index 0000000..8fc1f65 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/GuidingUI.h.B70720121B507343.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryAnalysisUI.cpp.B43A7A5D3452AC6B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryAnalysisUI.cpp.B43A7A5D3452AC6B.idx new file mode 100644 index 0000000..b98c512 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryAnalysisUI.cpp.B43A7A5D3452AC6B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryAnalysisUI.h.B63DA340597B1328.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryAnalysisUI.h.B63DA340597B1328.idx new file mode 100644 index 0000000..9cba0dc Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryAnalysisUI.h.B63DA340597B1328.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDatabase.cpp.2AAD7C0E883E2C45.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDatabase.cpp.2AAD7C0E883E2C45.idx new file mode 100644 index 0000000..d74201c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDatabase.cpp.2AAD7C0E883E2C45.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDatabase.h.1939219A0BDF49C6.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDatabase.h.1939219A0BDF49C6.idx new file mode 100644 index 0000000..1d98856 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDatabase.h.1939219A0BDF49C6.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDiaplayUI.cpp.9D9CA15609A7740C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDiaplayUI.cpp.9D9CA15609A7740C.idx new file mode 100644 index 0000000..c7b3e61 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDiaplayUI.cpp.9D9CA15609A7740C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDisplayUI.cpp.5CA8994C1DAEBB94.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDisplayUI.cpp.5CA8994C1DAEBB94.idx new file mode 100644 index 0000000..e2a94ba Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDisplayUI.cpp.5CA8994C1DAEBB94.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDisplayUI.h.3269F31D3146FA7F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDisplayUI.h.3269F31D3146FA7F.idx new file mode 100644 index 0000000..c76b1c7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/InjuryDisplayUI.h.3269F31D3146FA7F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QApplication.961E03F0735EF536.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QApplication.961E03F0735EF536.idx new file mode 100644 index 0000000..c89ab3e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QApplication.961E03F0735EF536.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QDeadlineTimer.C2ABA175E1407FFC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QDeadlineTimer.C2ABA175E1407FFC.idx new file mode 100644 index 0000000..99594d2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QDeadlineTimer.C2ABA175E1407FFC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QDebug.24A4D8D3335F1E17.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QDebug.24A4D8D3335F1E17.idx new file mode 100644 index 0000000..43b8bf1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QDebug.24A4D8D3335F1E17.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QEvent.B77604B577D4CFE9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QEvent.B77604B577D4CFE9.idx new file mode 100644 index 0000000..54527b2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QEvent.B77604B577D4CFE9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QHBoxLayout.7E958598807A7A2C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QHBoxLayout.7E958598807A7A2C.idx new file mode 100644 index 0000000..0b11779 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QHBoxLayout.7E958598807A7A2C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QHash.992C7BDCE2FA25A9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QHash.992C7BDCE2FA25A9.idx new file mode 100644 index 0000000..f64175d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QHash.992C7BDCE2FA25A9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLabel.5F9D380AC4A3A1C2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLabel.5F9D380AC4A3A1C2.idx new file mode 100644 index 0000000..66910da Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLabel.5F9D380AC4A3A1C2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLineEdit.374C96AFB5878675.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLineEdit.374C96AFB5878675.idx new file mode 100644 index 0000000..efb5ba2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QLineEdit.374C96AFB5878675.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QList.018D4720FDB45132.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QList.018D4720FDB45132.idx new file mode 100644 index 0000000..b5a9320 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QList.018D4720FDB45132.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMap.D8DD04357ABE44BE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMap.D8DD04357ABE44BE.idx new file mode 100644 index 0000000..7b670c1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMap.D8DD04357ABE44BE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMargins.18EC539285C31C6A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMargins.18EC539285C31C6A.idx new file mode 100644 index 0000000..8442f11 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMargins.18EC539285C31C6A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMatrix4x4.EFB2CF4CFA32B6A7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMatrix4x4.EFB2CF4CFA32B6A7.idx new file mode 100644 index 0000000..48fadb0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMatrix4x4.EFB2CF4CFA32B6A7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMediaPlayer.436D117922DD7E24.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMediaPlayer.436D117922DD7E24.idx new file mode 100644 index 0000000..1325d33 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMediaPlayer.436D117922DD7E24.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMessageBox.C4B4239FDD22B46A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMessageBox.C4B4239FDD22B46A.idx new file mode 100644 index 0000000..f0abd11 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMessageBox.C4B4239FDD22B46A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMutex.0F039DB90D0E035F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMutex.0F039DB90D0E035F.idx new file mode 100644 index 0000000..ccae181 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMutex.0F039DB90D0E035F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QObject.7579748AFB5981AE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QObject.7579748AFB5981AE.idx new file mode 100644 index 0000000..746c11d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QObject.7579748AFB5981AE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QPluginLoader.5D0F0DC6CA6A3527.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QPluginLoader.5D0F0DC6CA6A3527.idx new file mode 100644 index 0000000..149133d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QPluginLoader.5D0F0DC6CA6A3527.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QPushButton.5CF9FF05E64CC0CF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QPushButton.5CF9FF05E64CC0CF.idx new file mode 100644 index 0000000..7f4b4ac Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QPushButton.5CF9FF05E64CC0CF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QQuickItem.3D1839E0B13881CD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QQuickItem.3D1839E0B13881CD.idx new file mode 100644 index 0000000..5199abe Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QQuickItem.3D1839E0B13881CD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QQuickWidget.B7545D1077FBC76C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QQuickWidget.B7545D1077FBC76C.idx new file mode 100644 index 0000000..b50b2f9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QQuickWidget.B7545D1077FBC76C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QRect.F840778DB7E0349B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QRect.F840778DB7E0349B.idx new file mode 100644 index 0000000..760150d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QRect.F840778DB7E0349B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QRectF.C18095F3BB809EF5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QRectF.C18095F3BB809EF5.idx new file mode 100644 index 0000000..ee8ceab Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QRectF.C18095F3BB809EF5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSize.51398B4D1CDF3835.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSize.51398B4D1CDF3835.idx new file mode 100644 index 0000000..0bac633 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSize.51398B4D1CDF3835.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSizeF.F94B0495CBEA6E47.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSizeF.F94B0495CBEA6E47.idx new file mode 100644 index 0000000..01ed40e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSizeF.F94B0495CBEA6E47.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSql.CE4831A6FA41B290.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSql.CE4831A6FA41B290.idx new file mode 100644 index 0000000..bc0cdd0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSql.CE4831A6FA41B290.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSqlDatabase.4B32F2B3C96F43D9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSqlDatabase.4B32F2B3C96F43D9.idx new file mode 100644 index 0000000..02bc862 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSqlDatabase.4B32F2B3C96F43D9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSqlQuery.87637A9E1D10F52C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSqlQuery.87637A9E1D10F52C.idx new file mode 100644 index 0000000..b4ab66d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSqlQuery.87637A9E1D10F52C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSqlRecord.264A82E95F782EC0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSqlRecord.264A82E95F782EC0.idx new file mode 100644 index 0000000..cdcf718 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QSqlRecord.264A82E95F782EC0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QString.07C15E5E0568E64D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QString.07C15E5E0568E64D.idx new file mode 100644 index 0000000..beb1799 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QString.07C15E5E0568E64D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QStringList.A2EDFFE245D82CEA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QStringList.A2EDFFE245D82CEA.idx new file mode 100644 index 0000000..3050503 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QStringList.A2EDFFE245D82CEA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTimeEdit.D7498633B3E72224.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTimeEdit.D7498633B3E72224.idx new file mode 100644 index 0000000..653b967 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTimeEdit.D7498633B3E72224.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTransform.A86B5176EC3449CB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTransform.A86B5176EC3449CB.idx new file mode 100644 index 0000000..6ca1e34 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QTransform.A86B5176EC3449CB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVBoxLayout.03DCA1EA1B5359F4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVBoxLayout.03DCA1EA1B5359F4.idx new file mode 100644 index 0000000..424c91a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVBoxLayout.03DCA1EA1B5359F4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVariant.B6891AF2BDEDE243.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVariant.B6891AF2BDEDE243.idx new file mode 100644 index 0000000..a20ea17 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVariant.B6891AF2BDEDE243.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVideoWidget.00A746CC75D9C8B2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVideoWidget.00A746CC75D9C8B2.idx new file mode 100644 index 0000000..f5df890 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QVideoWidget.00A746CC75D9C8B2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QWidget.6B7321A8E61902B1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QWidget.6B7321A8E61902B1.idx new file mode 100644 index 0000000..18e5e3a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QWidget.6B7321A8E61902B1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtCore.9FB1EFE5DA5A8C86.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtCore.9FB1EFE5DA5A8C86.idx new file mode 100644 index 0000000..93eb83a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtCore.9FB1EFE5DA5A8C86.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtCoreDepends.823904C6E10409EC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtCoreDepends.823904C6E10409EC.idx new file mode 100644 index 0000000..563a59c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtCoreDepends.823904C6E10409EC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtSql.6E3E0C16AF40CF0D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtSql.6E3E0C16AF40CF0D.idx new file mode 100644 index 0000000..4d50229 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtSql.6E3E0C16AF40CF0D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtSqlDepends.B2CDEA0DBB6432C8.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtSqlDepends.B2CDEA0DBB6432C8.idx new file mode 100644 index 0000000..6956ae1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtSqlDepends.B2CDEA0DBB6432C8.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/UAVControlUI.cpp.45C00072071E288C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/UAVControlUI.cpp.45C00072071E288C.idx new file mode 100644 index 0000000..9014232 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/UAVControlUI.cpp.45C00072071E288C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/UAVControlUI.h.CB4143CF5B19FD74.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/UAVControlUI.h.CB4143CF5B19FD74.idx new file mode 100644 index 0000000..18106fd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/UAVControlUI.h.CB4143CF5B19FD74.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.10252374CFB53026.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.10252374CFB53026.idx new file mode 100644 index 0000000..e5d0805 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.10252374CFB53026.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__wmmintrin_aes.h.73466C6AF8C94F5C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__wmmintrin_aes.h.73466C6AF8C94F5C.idx new file mode 100644 index 0000000..789c470 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__wmmintrin_aes.h.73466C6AF8C94F5C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__wmmintrin_pclmul.h.C90C7B1832097FBE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__wmmintrin_pclmul.h.C90C7B1832097FBE.idx new file mode 100644 index 0000000..90c2960 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__wmmintrin_pclmul.h.C90C7B1832097FBE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw.h.CEE86047F9137794.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw.h.CEE86047F9137794.idx new file mode 100644 index 0000000..288f434 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw.h.CEE86047F9137794.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.E4841B5E4F4FC597.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.E4841B5E4F4FC597.idx new file mode 100644 index 0000000..d9db204 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.E4841B5E4F4FC597.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.A55BCDD9DC174D5F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.A55BCDD9DC174D5F.idx new file mode 100644 index 0000000..ac2ba2e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.A55BCDD9DC174D5F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.142E500D53AF2510.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.142E500D53AF2510.idx new file mode 100644 index 0000000..e30db7c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.142E500D53AF2510.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.7EC51B73D8CA5862.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.7EC51B73D8CA5862.idx new file mode 100644 index 0000000..77ad7ec Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.7EC51B73D8CA5862.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.C9B81233AA1AAC10.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.C9B81233AA1AAC10.idx new file mode 100644 index 0000000..acd1f1c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.C9B81233AA1AAC10.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_timeval.h.BA9F127AE06430C7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_timeval.h.BA9F127AE06430C7.idx new file mode 100644 index 0000000..469107e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_timeval.h.BA9F127AE06430C7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/adxintrin.h.5C5F0C6CB687D35D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/adxintrin.h.5C5F0C6CB687D35D.idx new file mode 100644 index 0000000..583d1a2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/adxintrin.h.5C5F0C6CB687D35D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.0DB360839DC4E08E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.0DB360839DC4E08E.idx new file mode 100644 index 0000000..e5f095d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.0DB360839DC4E08E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.AEC7247466538E4D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.AEC7247466538E4D.idx new file mode 100644 index 0000000..5d4d1d3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.AEC7247466538E4D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.282D295722465DBE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.282D295722465DBE.idx new file mode 100644 index 0000000..e237a47 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.282D295722465DBE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.22893802C1D45243.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.22893802C1D45243.idx new file mode 100644 index 0000000..92bd144 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.22893802C1D45243.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.3DE9C77209A6F12A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.3DE9C77209A6F12A.idx new file mode 100644 index 0000000..ff67fd5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.3DE9C77209A6F12A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.9E63C0337DAE7236.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.9E63C0337DAE7236.idx new file mode 100644 index 0000000..93b24c0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.9E63C0337DAE7236.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.440B379B8259C477.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.440B379B8259C477.idx new file mode 100644 index 0000000..dd3efce Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.440B379B8259C477.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.CDC420F8A204DB1D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.CDC420F8A204DB1D.idx new file mode 100644 index 0000000..2222c31 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.CDC420F8A204DB1D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/amxcomplexintrin.h.EFA529588763DC8C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/amxcomplexintrin.h.EFA529588763DC8C.idx new file mode 100644 index 0000000..accd90e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/amxcomplexintrin.h.EFA529588763DC8C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/amxfp16intrin.h.B953082C6EBC6970.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/amxfp16intrin.h.B953082C6EBC6970.idx new file mode 100644 index 0000000..083574c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/amxfp16intrin.h.B953082C6EBC6970.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/amxintrin.h.0D2C756C3EF3DF08.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/amxintrin.h.0D2C756C3EF3DF08.idx new file mode 100644 index 0000000..e35319d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/amxintrin.h.0D2C756C3EF3DF08.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/array.2D1B9C5D86048DBC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/array.2D1B9C5D86048DBC.idx new file mode 100644 index 0000000..ae9ad9a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/array.2D1B9C5D86048DBC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.EF0B91F233D678B9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.EF0B91F233D678B9.idx new file mode 100644 index 0000000..665b218 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.EF0B91F233D678B9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.5B69A11FBAFAE850.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.5B69A11FBAFAE850.idx new file mode 100644 index 0000000..ad8b511 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.5B69A11FBAFAE850.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.0F2D1D3A9E555BA1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.0F2D1D3A9E555BA1.idx new file mode 100644 index 0000000..21ece64 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.0F2D1D3A9E555BA1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.4434B59F6966FB29.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.4434B59F6966FB29.idx new file mode 100644 index 0000000..ebd0950 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.4434B59F6966FB29.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_futex.h.4C4EBB55026B1ED4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_futex.h.4C4EBB55026B1ED4.idx new file mode 100644 index 0000000..cea3e00 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_futex.h.4C4EBB55026B1ED4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.B4630A31F1C996D9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.B4630A31F1C996D9.idx new file mode 100644 index 0000000..bde7792 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.B4630A31F1C996D9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.E8F7D1BC87B89AA5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.E8F7D1BC87B89AA5.idx new file mode 100644 index 0000000..d81e972 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.E8F7D1BC87B89AA5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.17FF0B943CABBDCB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.17FF0B943CABBDCB.idx new file mode 100644 index 0000000..9e32b07 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.17FF0B943CABBDCB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.B2C4D73A7805467B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.B2C4D73A7805467B.idx new file mode 100644 index 0000000..7e89c39 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.B2C4D73A7805467B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx2intrin.h.836F4DFC8140A491.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx2intrin.h.836F4DFC8140A491.idx new file mode 100644 index 0000000..7feb70f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx2intrin.h.836F4DFC8140A491.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512bf16intrin.h.9921C44FDC13B13A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512bf16intrin.h.9921C44FDC13B13A.idx new file mode 100644 index 0000000..9ce7516 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512bf16intrin.h.9921C44FDC13B13A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512bitalgintrin.h.2573F8A04A2498DB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512bitalgintrin.h.2573F8A04A2498DB.idx new file mode 100644 index 0000000..9c99613 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512bitalgintrin.h.2573F8A04A2498DB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512bwintrin.h.3E3FD8C3CE3B2184.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512bwintrin.h.3E3FD8C3CE3B2184.idx new file mode 100644 index 0000000..9ede7eb Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512bwintrin.h.3E3FD8C3CE3B2184.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512cdintrin.h.65AB8D9FFCE0FEB2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512cdintrin.h.65AB8D9FFCE0FEB2.idx new file mode 100644 index 0000000..bda2b74 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512cdintrin.h.65AB8D9FFCE0FEB2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512dqintrin.h.FA190AAF465D6073.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512dqintrin.h.FA190AAF465D6073.idx new file mode 100644 index 0000000..ae1d1a6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512dqintrin.h.FA190AAF465D6073.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512erintrin.h.C06759107788BCAB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512erintrin.h.C06759107788BCAB.idx new file mode 100644 index 0000000..f6c89d9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512erintrin.h.C06759107788BCAB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512fintrin.h.C88223BE22BD626E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512fintrin.h.C88223BE22BD626E.idx new file mode 100644 index 0000000..572df94 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512fintrin.h.C88223BE22BD626E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512fp16intrin.h.97EB59A281CF1C77.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512fp16intrin.h.97EB59A281CF1C77.idx new file mode 100644 index 0000000..2cb1f2b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512fp16intrin.h.97EB59A281CF1C77.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512ifmaintrin.h.F1E6BF56CD3918C5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512ifmaintrin.h.F1E6BF56CD3918C5.idx new file mode 100644 index 0000000..0368231 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512ifmaintrin.h.F1E6BF56CD3918C5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512ifmavlintrin.h.3D7FDDDE8AA643AE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512ifmavlintrin.h.3D7FDDDE8AA643AE.idx new file mode 100644 index 0000000..4ab6459 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512ifmavlintrin.h.3D7FDDDE8AA643AE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512pfintrin.h.A090B7680B878C89.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512pfintrin.h.A090B7680B878C89.idx new file mode 100644 index 0000000..3792bf3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512pfintrin.h.A090B7680B878C89.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vbmi2intrin.h.CD379D5E8155D43C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vbmi2intrin.h.CD379D5E8155D43C.idx new file mode 100644 index 0000000..d8f9a80 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vbmi2intrin.h.CD379D5E8155D43C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vbmiintrin.h.93F963D4B1FD8DE4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vbmiintrin.h.93F963D4B1FD8DE4.idx new file mode 100644 index 0000000..50c87f2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vbmiintrin.h.93F963D4B1FD8DE4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vbmivlintrin.h.FD51971994AB3D02.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vbmivlintrin.h.FD51971994AB3D02.idx new file mode 100644 index 0000000..d4d338e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vbmivlintrin.h.FD51971994AB3D02.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlbf16intrin.h.64599B8FBC66C057.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlbf16intrin.h.64599B8FBC66C057.idx new file mode 100644 index 0000000..f17417e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlbf16intrin.h.64599B8FBC66C057.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlbitalgintrin.h.231D473BEE852A7A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlbitalgintrin.h.231D473BEE852A7A.idx new file mode 100644 index 0000000..dc21440 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlbitalgintrin.h.231D473BEE852A7A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlbwintrin.h.6C6EE3F810C01A41.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlbwintrin.h.6C6EE3F810C01A41.idx new file mode 100644 index 0000000..6405bae Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlbwintrin.h.6C6EE3F810C01A41.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlcdintrin.h.E3F97B967E8E099E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlcdintrin.h.E3F97B967E8E099E.idx new file mode 100644 index 0000000..50488e6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlcdintrin.h.E3F97B967E8E099E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vldqintrin.h.4B0D726B0C8FCC07.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vldqintrin.h.4B0D726B0C8FCC07.idx new file mode 100644 index 0000000..7c2f367 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vldqintrin.h.4B0D726B0C8FCC07.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlfp16intrin.h.49D8CB4BD8E7ADD4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlfp16intrin.h.49D8CB4BD8E7ADD4.idx new file mode 100644 index 0000000..8f589c9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlfp16intrin.h.49D8CB4BD8E7ADD4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlintrin.h.E9AADA8358D3C330.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlintrin.h.E9AADA8358D3C330.idx new file mode 100644 index 0000000..c229523 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlintrin.h.E9AADA8358D3C330.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlvbmi2intrin.h.36265A90239DEFE0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlvbmi2intrin.h.36265A90239DEFE0.idx new file mode 100644 index 0000000..dd5bbad Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlvbmi2intrin.h.36265A90239DEFE0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlvnniintrin.h.19363349569E0398.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlvnniintrin.h.19363349569E0398.idx new file mode 100644 index 0000000..4d7be6a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlvnniintrin.h.19363349569E0398.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlvp2intersectintrin.h.A84E7B3A641EECF2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlvp2intersectintrin.h.A84E7B3A641EECF2.idx new file mode 100644 index 0000000..6ea21f7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vlvp2intersectintrin.h.A84E7B3A641EECF2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vnniintrin.h.8BACC5BB3056D08F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vnniintrin.h.8BACC5BB3056D08F.idx new file mode 100644 index 0000000..b51ac07 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vnniintrin.h.8BACC5BB3056D08F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vp2intersectintrin.h.10A96819CF87EF55.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vp2intersectintrin.h.10A96819CF87EF55.idx new file mode 100644 index 0000000..9dd228f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vp2intersectintrin.h.10A96819CF87EF55.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vpopcntdqintrin.h.6B7E432497A03A34.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vpopcntdqintrin.h.6B7E432497A03A34.idx new file mode 100644 index 0000000..5f4313a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vpopcntdqintrin.h.6B7E432497A03A34.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vpopcntdqvlintrin.h.1C739DCBCB3C2483.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vpopcntdqvlintrin.h.1C739DCBCB3C2483.idx new file mode 100644 index 0000000..a09a715 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avx512vpopcntdqvlintrin.h.1C739DCBCB3C2483.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxifmaintrin.h.2330067ED03C882A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxifmaintrin.h.2330067ED03C882A.idx new file mode 100644 index 0000000..4ebb66b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxifmaintrin.h.2330067ED03C882A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxintrin.h.DAF01522A4D6B0EA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxintrin.h.DAF01522A4D6B0EA.idx new file mode 100644 index 0000000..f5e8007 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxintrin.h.DAF01522A4D6B0EA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxneconvertintrin.h.49FC72D5632F721D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxneconvertintrin.h.49FC72D5632F721D.idx new file mode 100644 index 0000000..f6a5aee Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxneconvertintrin.h.49FC72D5632F721D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxvnniint16intrin.h.3EEC869F8BA5327E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxvnniint16intrin.h.3EEC869F8BA5327E.idx new file mode 100644 index 0000000..b1a2893 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxvnniint16intrin.h.3EEC869F8BA5327E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxvnniint8intrin.h.F333F0D5E40CED58.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxvnniint8intrin.h.F333F0D5E40CED58.idx new file mode 100644 index 0000000..ab7f72f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxvnniint8intrin.h.F333F0D5E40CED58.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxvnniintrin.h.1330E433895AF57C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxvnniintrin.h.1330E433895AF57C.idx new file mode 100644 index 0000000..af0f26a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/avxvnniintrin.h.1330E433895AF57C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_ios.h.8909849781D1F2D7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_ios.h.8909849781D1F2D7.idx new file mode 100644 index 0000000..1a65614 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_ios.h.8909849781D1F2D7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_ios.tcc.8DFC443C40C8E6B1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_ios.tcc.8DFC443C40C8E6B1.idx new file mode 100644 index 0000000..d733027 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_ios.tcc.8DFC443C40C8E6B1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.5FFA785B849B0B4E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.5FFA785B849B0B4E.idx new file mode 100644 index 0000000..850998b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.5FFA785B849B0B4E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.0829788A5DE74ACC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.0829788A5DE74ACC.idx new file mode 100644 index 0000000..8ca72e0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.0829788A5DE74ACC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.75805A51411C4346.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.75805A51411C4346.idx new file mode 100644 index 0000000..ccedc44 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.75805A51411C4346.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.9433CE8B0C33301A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.9433CE8B0C33301A.idx new file mode 100644 index 0000000..3aed210 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.9433CE8B0C33301A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.B85CBD859F108043.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.B85CBD859F108043.idx new file mode 100644 index 0000000..7c99cc1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.B85CBD859F108043.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bit.A24B958331403163.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bit.A24B958331403163.idx new file mode 100644 index 0000000..fbc6fe2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bit.A24B958331403163.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bmi2intrin.h.EB48AB23D743D629.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bmi2intrin.h.EB48AB23D743D629.idx new file mode 100644 index 0000000..9b9c837 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bmi2intrin.h.EB48AB23D743D629.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bmiintrin.h.EDCA776B7653FAA0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bmiintrin.h.EDCA776B7653FAA0.idx new file mode 100644 index 0000000..e18ccd8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bmiintrin.h.EDCA776B7653FAA0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.66990A1D7AAD855E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.66990A1D7AAD855E.idx new file mode 100644 index 0000000..ee51377 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.66990A1D7AAD855E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.2C21DC0567FFF1E6.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.2C21DC0567FFF1E6.idx new file mode 100644 index 0000000..c9cc174 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.2C21DC0567FFF1E6.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.DABD140438E63D70.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.DABD140438E63D70.idx new file mode 100644 index 0000000..6ca708c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.DABD140438E63D70.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cassert.210CF931220D420A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cassert.210CF931220D420A.idx new file mode 100644 index 0000000..b01ed24 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cassert.210CF931220D420A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.63BEBE8FA7992675.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.63BEBE8FA7992675.idx new file mode 100644 index 0000000..5519a45 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.63BEBE8FA7992675.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.00368D86F5565FD6.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.00368D86F5565FD6.idx new file mode 100644 index 0000000..03cdc85 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.00368D86F5565FD6.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cetintrin.h.A7AD8972F4469350.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cetintrin.h.A7AD8972F4469350.idx new file mode 100644 index 0000000..4b55874 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cetintrin.h.A7AD8972F4469350.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.E01D296588DA0DAE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.E01D296588DA0DAE.idx new file mode 100644 index 0000000..ee4e35a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.E01D296588DA0DAE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.FFF8249B12E3050B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.FFF8249B12E3050B.idx new file mode 100644 index 0000000..cfa3330 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.FFF8249B12E3050B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.41093F7756D0ECE2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.41093F7756D0ECE2.idx new file mode 100644 index 0000000..070327e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.41093F7756D0ECE2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cldemoteintrin.h.94A28093D6C5D8A0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cldemoteintrin.h.94A28093D6C5D8A0.idx new file mode 100644 index 0000000..d6a0ae0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cldemoteintrin.h.94A28093D6C5D8A0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clflushoptintrin.h.66321A270B6FE669.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clflushoptintrin.h.66321A270B6FE669.idx new file mode 100644 index 0000000..db2e687 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clflushoptintrin.h.66321A270B6FE669.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/climits.8A4A060CBDCB1A2B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/climits.8A4A060CBDCB1A2B.idx new file mode 100644 index 0000000..722ee4d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/climits.8A4A060CBDCB1A2B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.222AE96133CEB53B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.222AE96133CEB53B.idx new file mode 100644 index 0000000..9b7899e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.222AE96133CEB53B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clwbintrin.h.4B8F3738401D3554.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clwbintrin.h.4B8F3738401D3554.idx new file mode 100644 index 0000000..098975b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clwbintrin.h.4B8F3738401D3554.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.C44587E1737CC86B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.C44587E1737CC86B.idx new file mode 100644 index 0000000..7bf3554 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.C44587E1737CC86B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmpccxaddintrin.h.26DD26F98A847054.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmpccxaddintrin.h.26DD26F98A847054.idx new file mode 100644 index 0000000..7eda6c0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmpccxaddintrin.h.26DD26F98A847054.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/codecvt.F9F940045869114C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/codecvt.F9F940045869114C.idx new file mode 100644 index 0000000..c8fb4d8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/codecvt.F9F940045869114C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/codecvt.h.00A2A765EB4F7343.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/codecvt.h.00A2A765EB4F7343.idx new file mode 100644 index 0000000..0b883cd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/codecvt.h.00A2A765EB4F7343.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.C1C62F5D2CCB0FAE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.C1C62F5D2CCB0FAE.idx new file mode 100644 index 0000000..eef1f80 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.C1C62F5D2CCB0FAE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.6477C668A8683084.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.6477C668A8683084.idx new file mode 100644 index 0000000..e9d46ef Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.6477C668A8683084.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/condition_variable.B12982298B2FA77C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/condition_variable.B12982298B2FA77C.idx new file mode 100644 index 0000000..8bf73a8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/condition_variable.B12982298B2FA77C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt.h.EE125FC345DD652D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt.h.EE125FC345DD652D.idx new file mode 100644 index 0000000..3321cbd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt.h.EE125FC345DD652D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.30E189E80E05A127.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.30E189E80E05A127.idx new file mode 100644 index 0000000..a5a2dbd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.30E189E80E05A127.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.F6E61B8BD7DECC47.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.F6E61B8BD7DECC47.idx new file mode 100644 index 0000000..ff85de3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.F6E61B8BD7DECC47.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.FD21F323CAD93E4C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.FD21F323CAD93E4C.idx new file mode 100644 index 0000000..1ca0dc6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.FD21F323CAD93E4C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.BB132673AEB816BA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.BB132673AEB816BA.idx new file mode 100644 index 0000000..e0862fe Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.BB132673AEB816BA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.465AD0D972618757.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.465AD0D972618757.idx new file mode 100644 index 0000000..31ad8a5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.465AD0D972618757.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crc32intrin.h.3809B79302A39989.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crc32intrin.h.3809B79302A39989.idx new file mode 100644 index 0000000..a2d1e3d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crc32intrin.h.3809B79302A39989.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crtdefs.h.2F407B861B651E2F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crtdefs.h.2F407B861B651E2F.idx new file mode 100644 index 0000000..56151cc Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crtdefs.h.2F407B861B651E2F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.F05C0C2AD293C66B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.F05C0C2AD293C66B.idx new file mode 100644 index 0000000..37a8604 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.F05C0C2AD293C66B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.1847A92CB103FB3A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.1847A92CB103FB3A.idx new file mode 100644 index 0000000..2aa912e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.1847A92CB103FB3A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.75B99E32033C3045.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.75B99E32033C3045.idx new file mode 100644 index 0000000..f8d0fdf Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.75B99E32033C3045.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.A5C46ACA559C1CBD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.A5C46ACA559C1CBD.idx new file mode 100644 index 0000000..c5ed491 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.A5C46ACA559C1CBD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.564707E2D1D8DFF1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.564707E2D1D8DFF1.idx new file mode 100644 index 0000000..349b174 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.564707E2D1D8DFF1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.7100AD3FCA8FA9CB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.7100AD3FCA8FA9CB.idx new file mode 100644 index 0000000..af558dd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.7100AD3FCA8FA9CB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.68F5EE7E3FC92454.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.68F5EE7E3FC92454.idx new file mode 100644 index 0000000..2d255ac Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.68F5EE7E3FC92454.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype_base.h.F5860EE470E99EAA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype_base.h.F5860EE470E99EAA.idx new file mode 100644 index 0000000..e1f8638 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype_base.h.F5860EE470E99EAA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype_inline.h.6DEEDFEAC1C94C0D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype_inline.h.6DEEDFEAC1C94C0D.idx new file mode 100644 index 0000000..371683b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype_inline.h.6DEEDFEAC1C94C0D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.DD7E41E0AFDBE31F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.DD7E41E0AFDBE31F.idx new file mode 100644 index 0000000..8a38c41 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.DD7E41E0AFDBE31F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwctype.23719CE0B6645D44.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwctype.23719CE0B6645D44.idx new file mode 100644 index 0000000..63a006f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwctype.23719CE0B6645D44.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.6482FC118F691EAA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.6482FC118F691EAA.idx new file mode 100644 index 0000000..6096966 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.6482FC118F691EAA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.E39B3D6BCAC6F3F3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.E39B3D6BCAC6F3F3.idx new file mode 100644 index 0000000..48e068e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.E39B3D6BCAC6F3F3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.225B39486E72DEAF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.225B39486E72DEAF.idx new file mode 100644 index 0000000..21d766c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.225B39486E72DEAF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.584A85E9CFC4D744.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.584A85E9CFC4D744.idx new file mode 100644 index 0000000..dcfdad9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.584A85E9CFC4D744.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/emmintrin.h.E09C8A7157217BBD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/emmintrin.h.E09C8A7157217BBD.idx new file mode 100644 index 0000000..715d189 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/emmintrin.h.E09C8A7157217BBD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.81B778ACB8F21FD5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.81B778ACB8F21FD5.idx new file mode 100644 index 0000000..87a0934 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.81B778ACB8F21FD5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enqcmdintrin.h.840E9DC52A93047E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enqcmdintrin.h.840E9DC52A93047E.idx new file mode 100644 index 0000000..25c2d69 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enqcmdintrin.h.840E9DC52A93047E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.5BA8B392975EBC82.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.5BA8B392975EBC82.idx new file mode 100644 index 0000000..1b3b323 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.5BA8B392975EBC82.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.FF5E0F10D11C38EF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.FF5E0F10D11C38EF.idx new file mode 100644 index 0000000..c5fa25c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.FF5E0F10D11C38EF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.D9C03533966C2131.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.D9C03533966C2131.idx new file mode 100644 index 0000000..b93a505 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.D9C03533966C2131.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.41F8363ADDF133DE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.41F8363ADDF133DE.idx new file mode 100644 index 0000000..5389d7d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.41F8363ADDF133DE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.D22357797DD47554.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.D22357797DD47554.idx new file mode 100644 index 0000000..050b443 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.D22357797DD47554.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.9BAB45DFDFD96621.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.9BAB45DFDFD96621.idx new file mode 100644 index 0000000..b2e6b7e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.9BAB45DFDFD96621.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.226562DB0F54F44D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.226562DB0F54F44D.idx new file mode 100644 index 0000000..9c2f9c1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.226562DB0F54F44D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.720636AFBD5FC3CA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.720636AFBD5FC3CA.idx new file mode 100644 index 0000000..7e44138 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.720636AFBD5FC3CA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.DF2E8D6218347DE3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.DF2E8D6218347DE3.idx new file mode 100644 index 0000000..962d5ca Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.DF2E8D6218347DE3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/f16cintrin.h.C24CA484ADC6EB7D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/f16cintrin.h.C24CA484ADC6EB7D.idx new file mode 100644 index 0000000..6280db6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/f16cintrin.h.C24CA484ADC6EB7D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/filesystem.2B73A5BC9BD8A7C8.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/filesystem.2B73A5BC9BD8A7C8.idx new file mode 100644 index 0000000..b618f1a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/filesystem.2B73A5BC9BD8A7C8.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/float.h.01312251FE75E527.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/float.h.01312251FE75E527.idx new file mode 100644 index 0000000..ca59527 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/float.h.01312251FE75E527.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/float.h.231EE827291710E2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/float.h.231EE827291710E2.idx new file mode 100644 index 0000000..ffbd64f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/float.h.231EE827291710E2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/float.h.89E1ED1DF772D607.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/float.h.89E1ED1DF772D607.idx new file mode 100644 index 0000000..50825e0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/float.h.89E1ED1DF772D607.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fmaintrin.h.6BD2C993CA1F94E9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fmaintrin.h.6BD2C993CA1F94E9.idx new file mode 100644 index 0000000..fde131e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fmaintrin.h.6BD2C993CA1F94E9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_dir.h.3B8D350436A77D2E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_dir.h.3B8D350436A77D2E.idx new file mode 100644 index 0000000..718fd36 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_dir.h.3B8D350436A77D2E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_fwd.h.081613DE707E7778.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_fwd.h.081613DE707E7778.idx new file mode 100644 index 0000000..e6f7ef0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_fwd.h.081613DE707E7778.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_ops.h.2D3C78F361C1F641.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_ops.h.2D3C78F361C1F641.idx new file mode 100644 index 0000000..28c413d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_ops.h.2D3C78F361C1F641.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_path.h.CE65033A99DBFEB1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_path.h.CE65033A99DBFEB1.idx new file mode 100644 index 0000000..d364744 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_path.h.CE65033A99DBFEB1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.80AC4BAA1396DC57.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.80AC4BAA1396DC57.idx new file mode 100644 index 0000000..682ba53 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.80AC4BAA1396DC57.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional.BCE3EE2FB837DEC1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional.BCE3EE2FB837DEC1.idx new file mode 100644 index 0000000..43b8455 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional.BCE3EE2FB837DEC1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.149F4E72F50C0C14.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.149F4E72F50C0C14.idx new file mode 100644 index 0000000..ad3d0d2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.149F4E72F50C0C14.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/future.C022D5A054F533B8.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/future.C022D5A054F533B8.idx new file mode 100644 index 0000000..4c84ad2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/future.C022D5A054F533B8.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fxsrintrin.h.73FB386DD2CE2C27.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fxsrintrin.h.73FB386DD2CE2C27.idx new file mode 100644 index 0000000..d116ebd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fxsrintrin.h.73FB386DD2CE2C27.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.37F76B6F36C8A315.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.37F76B6F36C8A315.idx new file mode 100644 index 0000000..3d67c97 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.37F76B6F36C8A315.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gfniintrin.h.ED3E5B3EE8085DCE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gfniintrin.h.ED3E5B3EE8085DCE.idx new file mode 100644 index 0000000..b418161 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gfniintrin.h.ED3E5B3EE8085DCE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.CE7FAF46E8AD1759.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.CE7FAF46E8AD1759.idx new file mode 100644 index 0000000..1d07e39 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.CE7FAF46E8AD1759.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.F7EB333208B6AE8D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.F7EB333208B6AE8D.idx new file mode 100644 index 0000000..42955ac Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.F7EB333208B6AE8D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.E38152292BBA573F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.E38152292BBA573F.idx new file mode 100644 index 0000000..4dfc60d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.E38152292BBA573F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.B28D23596DAF831F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.B28D23596DAF831F.idx new file mode 100644 index 0000000..e8cc3ef Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.B28D23596DAF831F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.95CE07D14DBEE1EA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.95CE07D14DBEE1EA.idx new file mode 100644 index 0000000..0b4426b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.95CE07D14DBEE1EA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.62DF6E91D1D3D30C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.62DF6E91D1D3D30C.idx new file mode 100644 index 0000000..2afa8ca Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.62DF6E91D1D3D30C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.70D0D1C94A005FF9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.70D0D1C94A005FF9.idx new file mode 100644 index 0000000..f1e75a2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.70D0D1C94A005FF9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.7FE9FFE09D843FFA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.7FE9FFE09D843FFA.idx new file mode 100644 index 0000000..8e61a26 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.7FE9FFE09D843FFA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hresetintrin.h.6752B244F66E6D67.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hresetintrin.h.6752B244F66E6D67.idx new file mode 100644 index 0000000..9d06406 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hresetintrin.h.6752B244F66E6D67.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.516FAFC01A477D9D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.516FAFC01A477D9D.idx new file mode 100644 index 0000000..970208a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.516FAFC01A477D9D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/immintrin.h.07FCD0651593E6C6.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/immintrin.h.07FCD0651593E6C6.idx new file mode 100644 index 0000000..2cd14cc Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/immintrin.h.07FCD0651593E6C6.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.28A6C6FB67A09A01.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.28A6C6FB67A09A01.idx new file mode 100644 index 0000000..fce8303 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.28A6C6FB67A09A01.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.A259DE81E6A6E78F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.A259DE81E6A6E78F.idx new file mode 100644 index 0000000..1cda81f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.A259DE81E6A6E78F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invpcidintrin.h.075453B72360B6F2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invpcidintrin.h.075453B72360B6F2.idx new file mode 100644 index 0000000..9fc0037 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invpcidintrin.h.075453B72360B6F2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iomanip.0B515F483A078A02.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iomanip.0B515F483A078A02.idx new file mode 100644 index 0000000..2525098 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iomanip.0B515F483A078A02.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios.B86CC4F54A9278CB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios.B86CC4F54A9278CB.idx new file mode 100644 index 0000000..f4d1cf7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios.B86CC4F54A9278CB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.E0C9510DE4398923.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.E0C9510DE4398923.idx new file mode 100644 index 0000000..326055e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.E0C9510DE4398923.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.5C129ED42BCE140E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.5C129ED42BCE140E.idx new file mode 100644 index 0000000..014c317 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.5C129ED42BCE140E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/istream.FF71F1056F029DC7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/istream.FF71F1056F029DC7.idx new file mode 100644 index 0000000..3db3d2e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/istream.FF71F1056F029DC7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/istream.tcc.14A6C34E73A8CC8D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/istream.tcc.14A6C34E73A8CC8D.idx new file mode 100644 index 0000000..9209d6a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/istream.tcc.14A6C34E73A8CC8D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.591DFE6AD168D36D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.591DFE6AD168D36D.idx new file mode 100644 index 0000000..9b184e7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.591DFE6AD168D36D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/keylockerintrin.h.FB1DC0E98F33E873.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/keylockerintrin.h.FB1DC0E98F33E873.idx new file mode 100644 index 0000000..15c2af1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/keylockerintrin.h.FB1DC0E98F33E873.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.E9F72F75003403A2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.E9F72F75003403A2.idx new file mode 100644 index 0000000..a7e56a3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.E9F72F75003403A2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.3FEFE72336147264.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.3FEFE72336147264.idx new file mode 100644 index 0000000..68d43b1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.3FEFE72336147264.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.4DF39CBDCAA43B57.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.4DF39CBDCAA43B57.idx new file mode 100644 index 0000000..a224f93 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.4DF39CBDCAA43B57.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.BC1D4C9471A6ADE2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.BC1D4C9471A6ADE2.idx new file mode 100644 index 0000000..1b10ad4 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.BC1D4C9471A6ADE2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.4AC1C8A2DAA05B70.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.4AC1C8A2DAA05B70.idx new file mode 100644 index 0000000..9775649 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.4AC1C8A2DAA05B70.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.994BFED9918240FE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.994BFED9918240FE.idx new file mode 100644 index 0000000..d9772bc Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.994BFED9918240FE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.D9542D56A66A637D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.D9542D56A66A637D.idx new file mode 100644 index 0000000..ea0827f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.D9542D56A66A637D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.ECFFE58101CCEB44.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.ECFFE58101CCEB44.idx new file mode 100644 index 0000000..672ebd8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.ECFFE58101CCEB44.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.6158D14FC554C76C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.6158D14FC554C76C.idx new file mode 100644 index 0000000..6effc34 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.6158D14FC554C76C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.26CA9164CF03CAE5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.26CA9164CF03CAE5.idx new file mode 100644 index 0000000..f978822 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.26CA9164CF03CAE5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_conv.h.E95F135CC92233DF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_conv.h.E95F135CC92233DF.idx new file mode 100644 index 0000000..29da99f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_conv.h.E95F135CC92233DF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets.h.8E49CEF3BFF968A7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets.h.8E49CEF3BFF968A7.idx new file mode 100644 index 0000000..530db62 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets.h.8E49CEF3BFF968A7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets.tcc.362421E549A1C498.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets.tcc.362421E549A1C498.idx new file mode 100644 index 0000000..63917c2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets.tcc.362421E549A1C498.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.h.8A851C2C6FFD224D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.h.8A851C2C6FFD224D.idx new file mode 100644 index 0000000..ad8a89c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.h.8A851C2C6FFD224D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.tcc.4C8EDAB705010807.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.tcc.4C8EDAB705010807.idx new file mode 100644 index 0000000..f5cd383 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.tcc.4C8EDAB705010807.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.F59245686BD6188C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.F59245686BD6188C.idx new file mode 100644 index 0000000..96eff0d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.F59245686BD6188C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/lzcntintrin.h.9C3AD230BED8D07E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/lzcntintrin.h.9C3AD230BED8D07E.idx new file mode 100644 index 0000000..592a85e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/lzcntintrin.h.9C3AD230BED8D07E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.611BD508202849B9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.611BD508202849B9.idx new file mode 100644 index 0000000..6981d4b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.611BD508202849B9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/malloc.h.91098D2484943E2A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/malloc.h.91098D2484943E2A.idx new file mode 100644 index 0000000..0c1ce2a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/malloc.h.91098D2484943E2A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/map.6F59F72F614160B1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/map.6F59F72F614160B1.idx new file mode 100644 index 0000000..327c746 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/map.6F59F72F614160B1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.8C5965F68D2D8D0A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.8C5965F68D2D8D0A.idx new file mode 100644 index 0000000..9bc94b4 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.8C5965F68D2D8D0A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory.694B71097EE264CB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory.694B71097EE264CB.idx new file mode 100644 index 0000000..058e440 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory.694B71097EE264CB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory_resource.80DA00592E88522D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory_resource.80DA00592E88522D.idx new file mode 100644 index 0000000..8d61b06 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory_resource.80DA00592E88522D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.F7D40F1A133CB5F7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.F7D40F1A133CB5F7.idx new file mode 100644 index 0000000..141f249 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.F7D40F1A133CB5F7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/messages_members.h.97A3D7B44628158B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/messages_members.h.97A3D7B44628158B.idx new file mode 100644 index 0000000..67f3cfe Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/messages_members.h.97A3D7B44628158B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mm_malloc.h.25FFC55489F7CFCF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mm_malloc.h.25FFC55489F7CFCF.idx new file mode 100644 index 0000000..2520087 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mm_malloc.h.25FFC55489F7CFCF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mmintrin.h.A7A555CCC87BC2A3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mmintrin.h.A7A555CCC87BC2A3.idx new file mode 100644 index 0000000..ad42edb Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mmintrin.h.A7A555CCC87BC2A3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.C6AB47A0C33452CF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.C6AB47A0C33452CF.idx new file mode 100644 index 0000000..66278af Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.C6AB47A0C33452CF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/movdirintrin.h.AD36B689E32BF387.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/movdirintrin.h.AD36B689E32BF387.idx new file mode 100644 index 0000000..4175fe8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/movdirintrin.h.AD36B689E32BF387.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.B9C481338367D9AE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.B9C481338367D9AE.idx new file mode 100644 index 0000000..c8fcb9b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.B9C481338367D9AE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mutex.6E03802EA3D552BE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mutex.6E03802EA3D552BE.idx new file mode 100644 index 0000000..9fcdfe3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mutex.6E03802EA3D552BE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.A092ED199B068F57.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.A092ED199B068F57.idx new file mode 100644 index 0000000..e648113 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.A092ED199B068F57.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new.068630F5D2AC6016.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new.068630F5D2AC6016.idx new file mode 100644 index 0000000..3e54f0e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new.068630F5D2AC6016.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.A117956987F0396A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.A117956987F0396A.idx new file mode 100644 index 0000000..bca633e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.A117956987F0396A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.0F0D91941F96EFD4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.0F0D91941F96EFD4.idx new file mode 100644 index 0000000..f563837 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.0F0D91941F96EFD4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.66AD29EF954181D3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.66AD29EF954181D3.idx new file mode 100644 index 0000000..4e02d79 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.66AD29EF954181D3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.35F1F5E7C987C275.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.35F1F5E7C987C275.idx new file mode 100644 index 0000000..9c52929 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.35F1F5E7C987C275.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/opt_random.h.515A38A3BD8C84C8.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/opt_random.h.515A38A3BD8C84C8.idx new file mode 100644 index 0000000..3233e7e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/opt_random.h.515A38A3BD8C84C8.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/optional.4214039576EDA6BB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/optional.4214039576EDA6BB.idx new file mode 100644 index 0000000..b46e193 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/optional.4214039576EDA6BB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.BA3C3D4AA9DDB20B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.BA3C3D4AA9DDB20B.idx new file mode 100644 index 0000000..0fe7b33 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.BA3C3D4AA9DDB20B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream.6E1D7445457F6A13.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream.6E1D7445457F6A13.idx new file mode 100644 index 0000000..b3dc7d2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream.6E1D7445457F6A13.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream.tcc.12F80419B96F1D70.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream.tcc.12F80419B96F1D70.idx new file mode 100644 index 0000000..e7b0ff5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream.tcc.12F80419B96F1D70.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.71E955924CB7040B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.71E955924CB7040B.idx new file mode 100644 index 0000000..9697287 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.71E955924CB7040B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.2FBFA7EC6F28FE62.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.2FBFA7EC6F28FE62.idx new file mode 100644 index 0000000..684da56 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.2FBFA7EC6F28FE62.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pconfigintrin.h.8C350C4C6F0A9E84.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pconfigintrin.h.8C350C4C6F0A9E84.idx new file mode 100644 index 0000000..e3ae6f6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pconfigintrin.h.8C350C4C6F0A9E84.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pkuintrin.h.88C8938EEEE9F387.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pkuintrin.h.88C8938EEEE9F387.idx new file mode 100644 index 0000000..b012532 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pkuintrin.h.88C8938EEEE9F387.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pmmintrin.h.7A98224F0A1AC341.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pmmintrin.h.7A98224F0A1AC341.idx new file mode 100644 index 0000000..2c9d7ba Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pmmintrin.h.7A98224F0A1AC341.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.D0042DDEC72B0E52.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.D0042DDEC72B0E52.idx new file mode 100644 index 0000000..6beae5e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.D0042DDEC72B0E52.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.2A277D85899AD1A0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.2A277D85899AD1A0.idx new file mode 100644 index 0000000..e804d48 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.2A277D85899AD1A0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/popcntintrin.h.CAD139ACCE3EE56D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/popcntintrin.h.CAD139ACCE3EE56D.idx new file mode 100644 index 0000000..ff79f64 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/popcntintrin.h.CAD139ACCE3EE56D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.E75F6AB904F3BE19.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.E75F6AB904F3BE19.idx new file mode 100644 index 0000000..579372f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.E75F6AB904F3BE19.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.FE3A28D63991F8FD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.FE3A28D63991F8FD.idx new file mode 100644 index 0000000..976f598 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.FE3A28D63991F8FD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/prfchiintrin.h.BCECA4D3C4186A41.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/prfchiintrin.h.BCECA4D3C4186A41.idx new file mode 100644 index 0000000..ada752f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/prfchiintrin.h.BCECA4D3C4186A41.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/process.h.901D27804A0E425B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/process.h.901D27804A0E425B.idx new file mode 100644 index 0000000..da77077 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/process.h.901D27804A0E425B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.477FC0FCCBDDD1C6.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.477FC0FCCBDDD1C6.idx new file mode 100644 index 0000000..1e0b899 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.477FC0FCCBDDD1C6.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.F1B3C712C0F6487A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.F1B3C712C0F6487A.idx new file mode 100644 index 0000000..bc545a9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.F1B3C712C0F6487A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_compat.h.9FF203A9D6169622.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_compat.h.9FF203A9D6169622.idx new file mode 100644 index 0000000..66c02de Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_compat.h.9FF203A9D6169622.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_signal.h.986399E47C5327D6.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_signal.h.986399E47C5327D6.idx new file mode 100644 index 0000000..ded1cab Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_signal.h.986399E47C5327D6.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_time.h.3F95107337D25941.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_time.h.3F95107337D25941.idx new file mode 100644 index 0000000..217028c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_time.h.3F95107337D25941.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.351CEC47E2FE2E91.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.351CEC47E2FE2E91.idx new file mode 100644 index 0000000..1c7bee4 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.351CEC47E2FE2E91.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.1E6F421300255198.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.1E6F421300255198.idx new file mode 100644 index 0000000..f6b2695 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.1E6F421300255198.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptwriteintrin.h.C8733DD4A872CE40.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptwriteintrin.h.C8733DD4A872CE40.idx new file mode 100644 index 0000000..7c15c15 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptwriteintrin.h.C8733DD4A872CE40.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20algorithm.h.2C72C91300A86DD1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20algorithm.h.2C72C91300A86DD1.idx new file mode 100644 index 0000000..380f1c0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20algorithm.h.2C72C91300A86DD1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20chrono.h.E1850BD2B950A21E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20chrono.h.E1850BD2B950A21E.idx new file mode 100644 index 0000000..3c97e72 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20chrono.h.E1850BD2B950A21E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20functional.h.40B4726FDBA6D562.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20functional.h.40B4726FDBA6D562.idx new file mode 100644 index 0000000..577edbb Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20functional.h.40B4726FDBA6D562.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20iterator.h.7DF40BFC453B08D1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20iterator.h.7DF40BFC453B08D1.idx new file mode 100644 index 0000000..57271a5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20iterator.h.7DF40BFC453B08D1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20map.h.D937C71A68CE6936.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20map.h.D937C71A68CE6936.idx new file mode 100644 index 0000000..f4161ba Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20map.h.D937C71A68CE6936.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.507596DAF05A0315.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.507596DAF05A0315.idx new file mode 100644 index 0000000..2ad3c0e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.507596DAF05A0315.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.A511459D4057FA33.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.A511459D4057FA33.idx new file mode 100644 index 0000000..a4ae414 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.A511459D4057FA33.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20vector.h.CEA9377B4296809F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20vector.h.CEA9377B4296809F.idx new file mode 100644 index 0000000..fd03f27 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20vector.h.CEA9377B4296809F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23functional.h.078F08837007D4E3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23functional.h.078F08837007D4E3.idx new file mode 100644 index 0000000..34b91fd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23functional.h.078F08837007D4E3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23utility.h.6652A9DBA1A44F95.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23utility.h.6652A9DBA1A44F95.idx new file mode 100644 index 0000000..8ad87f8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23utility.h.6652A9DBA1A44F95.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractanimation.h.0DF3366974023360.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractanimation.h.0DF3366974023360.idx new file mode 100644 index 0000000..4ac88ab Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractanimation.h.0DF3366974023360.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractbutton.h.58683542C6540D2B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractbutton.h.58683542C6540D2B.idx new file mode 100644 index 0000000..06d96e6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractbutton.h.58683542C6540D2B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstracteventdispatcher.h.9314C6FF88B3A14E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstracteventdispatcher.h.9314C6FF88B3A14E.idx new file mode 100644 index 0000000..1860155 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstracteventdispatcher.h.9314C6FF88B3A14E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemdelegate.h.7EB0ABB33A5701DB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemdelegate.h.7EB0ABB33A5701DB.idx new file mode 100644 index 0000000..8a85771 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemdelegate.h.7EB0ABB33A5701DB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemmodel.h.CC718D30B6E733D3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemmodel.h.CC718D30B6E733D3.idx new file mode 100644 index 0000000..774e0cd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemmodel.h.CC718D30B6E733D3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemview.h.BF7CC34E7D6F0F5E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemview.h.BF7CC34E7D6F0F5E.idx new file mode 100644 index 0000000..b2f2790 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemview.h.BF7CC34E7D6F0F5E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractnativeeventfilter.h.D31913C9DBECE4DF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractnativeeventfilter.h.D31913C9DBECE4DF.idx new file mode 100644 index 0000000..6bccc69 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractnativeeventfilter.h.D31913C9DBECE4DF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractproxymodel.h.18E5026A78E3154F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractproxymodel.h.18E5026A78E3154F.idx new file mode 100644 index 0000000..94fa79c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractproxymodel.h.18E5026A78E3154F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractscrollarea.h.3D2BEDC18D4A3397.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractscrollarea.h.3D2BEDC18D4A3397.idx new file mode 100644 index 0000000..0b7303d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractscrollarea.h.3D2BEDC18D4A3397.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractslider.h.39D33E36BFD795DC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractslider.h.39D33E36BFD795DC.idx new file mode 100644 index 0000000..8020c1b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractslider.h.39D33E36BFD795DC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractspinbox.h.27DD36A8164E0590.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractspinbox.h.27DD36A8164E0590.idx new file mode 100644 index 0000000..3eefff2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractspinbox.h.27DD36A8164E0590.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaccessible.h.1430EE7857ECCF54.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaccessible.h.1430EE7857ECCF54.idx new file mode 100644 index 0000000..4060063 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaccessible.h.1430EE7857ECCF54.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaccessible_base.h.CFB14EF7548FE5E7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaccessible_base.h.CFB14EF7548FE5E7.idx new file mode 100644 index 0000000..b592293 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaccessible_base.h.CFB14EF7548FE5E7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaction.h.BFC5D8F18F2FE944.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaction.h.BFC5D8F18F2FE944.idx new file mode 100644 index 0000000..892cb5b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaction.h.BFC5D8F18F2FE944.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.ABFF00CCE03B3FBA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.ABFF00CCE03B3FBA.idx new file mode 100644 index 0000000..b3bf851 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.ABFF00CCE03B3FBA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanimationgroup.h.1CEEE1321B80F07C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanimationgroup.h.1CEEE1321B80F07C.idx new file mode 100644 index 0000000..078cf02 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanimationgroup.h.1CEEE1321B80F07C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.60B1C6D3ACAE8935.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.60B1C6D3ACAE8935.idx new file mode 100644 index 0000000..6b7f5aa Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.60B1C6D3ACAE8935.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplication.h.DFC26669A950CE80.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplication.h.DFC26669A950CE80.idx new file mode 100644 index 0000000..c149298 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplication.h.DFC26669A950CE80.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplicationstatic.h.809507F5BCE4B863.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplicationstatic.h.809507F5BCE4B863.idx new file mode 100644 index 0000000..3d4b7fe Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplicationstatic.h.809507F5BCE4B863.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.2A207090DC8FC057.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.2A207090DC8FC057.idx new file mode 100644 index 0000000..cb6bcab Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.2A207090DC8FC057.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.D301FC7F39DEE7D4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.D301FC7F39DEE7D4.idx new file mode 100644 index 0000000..03058b3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.D301FC7F39DEE7D4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.C8E25BC2F3F809FF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.C8E25BC2F3F809FF.idx new file mode 100644 index 0000000..486913e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.C8E25BC2F3F809FF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.005105FEA224220C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.005105FEA224220C.idx new file mode 100644 index 0000000..2c0e4ac Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.005105FEA224220C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassociativeiterable.h.F93B3B3D44FA1700.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassociativeiterable.h.F93B3B3D44FA1700.idx new file mode 100644 index 0000000..b0cd02f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassociativeiterable.h.F93B3B3D44FA1700.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.0262BDEC6E25AA4F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.0262BDEC6E25AA4F.idx new file mode 100644 index 0000000..e06008b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.0262BDEC6E25AA4F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.5F0DEDD48A11B69A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.5F0DEDD48A11B69A.idx new file mode 100644 index 0000000..0301192 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.5F0DEDD48A11B69A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomicscopedvaluerollback.h.6126E2702FE2DBC9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomicscopedvaluerollback.h.6126E2702FE2DBC9.idx new file mode 100644 index 0000000..8090f2e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomicscopedvaluerollback.h.6126E2702FE2DBC9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaudio.h.2B91977754AF71F5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaudio.h.2B91977754AF71F5.idx new file mode 100644 index 0000000..88816bd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaudio.h.2B91977754AF71F5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.4462AA6DC82FD830.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.4462AA6DC82FD830.idx new file mode 100644 index 0000000..b68ab48 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.4462AA6DC82FD830.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasictimer.h.3562CC1FE2549B1B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasictimer.h.3562CC1FE2549B1B.idx new file mode 100644 index 0000000..4a615ea Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasictimer.h.3562CC1FE2549B1B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.34BFAB58F60B2C6F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.34BFAB58F60B2C6F.idx new file mode 100644 index 0000000..1ee1f67 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.34BFAB58F60B2C6F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitarray.h.E0C305662EE4CA94.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitarray.h.E0C305662EE4CA94.idx new file mode 100644 index 0000000..b7005b5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitarray.h.E0C305662EE4CA94.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitmap.h.6E43064183AF4BC9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitmap.h.6E43064183AF4BC9.idx new file mode 100644 index 0000000..545540a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitmap.h.6E43064183AF4BC9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qboxlayout.h.FC59820E324E3D06.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qboxlayout.h.FC59820E324E3D06.idx new file mode 100644 index 0000000..11ab938 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qboxlayout.h.FC59820E324E3D06.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbrush.h.14B3BB1DE9C81F49.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbrush.h.14B3BB1DE9C81F49.idx new file mode 100644 index 0000000..0fc5291 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbrush.h.14B3BB1DE9C81F49.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbuffer.h.334279C91CF9FC88.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbuffer.h.334279C91CF9FC88.idx new file mode 100644 index 0000000..88df04d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbuffer.h.334279C91CF9FC88.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.8D45AFBA88800D28.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.8D45AFBA88800D28.idx new file mode 100644 index 0000000..508d90b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.8D45AFBA88800D28.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.2BF248355E60B4E8.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.2BF248355E60B4E8.idx new file mode 100644 index 0000000..ae7e97b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.2BF248355E60B4E8.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.450393132F68B539.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.450393132F68B539.idx new file mode 100644 index 0000000..4dca016 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.450393132F68B539.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraymatcher.h.8C9A1C8C2FBE4D20.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraymatcher.h.8C9A1C8C2FBE4D20.idx new file mode 100644 index 0000000..4fb3020 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraymatcher.h.8C9A1C8C2FBE4D20.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.04491736FF92955B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.04491736FF92955B.idx new file mode 100644 index 0000000..91fba44 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.04491736FF92955B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcache.h.86F88C3E056AAF49.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcache.h.86F88C3E056AAF49.idx new file mode 100644 index 0000000..eca5b4f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcache.h.86F88C3E056AAF49.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.7A506A3859635C79.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.7A506A3859635C79.idx new file mode 100644 index 0000000..eb94b6c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.7A506A3859635C79.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborarray.h.713ADF4C31D79AE8.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborarray.h.713ADF4C31D79AE8.idx new file mode 100644 index 0000000..55803ab Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborarray.h.713ADF4C31D79AE8.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborcommon.h.274C4D0F34CDD30B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborcommon.h.274C4D0F34CDD30B.idx new file mode 100644 index 0000000..2534179 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborcommon.h.274C4D0F34CDD30B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcbormap.h.C256E1E9749BA3A8.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcbormap.h.C256E1E9749BA3A8.idx new file mode 100644 index 0000000..390b303 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcbormap.h.C256E1E9749BA3A8.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborstream.h.E737567AF7F25166.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborstream.h.E737567AF7F25166.idx new file mode 100644 index 0000000..7936dde Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborstream.h.E737567AF7F25166.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborstreamreader.h.FBA924AE0ED5D46C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborstreamreader.h.FBA924AE0ED5D46C.idx new file mode 100644 index 0000000..35914fb Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborstreamreader.h.FBA924AE0ED5D46C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborstreamwriter.h.B570B095304B0DFF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborstreamwriter.h.B570B095304B0DFF.idx new file mode 100644 index 0000000..40b085e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborstreamwriter.h.B570B095304B0DFF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborvalue.h.2F96B1FF4D395DF4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborvalue.h.2F96B1FF4D395DF4.idx new file mode 100644 index 0000000..01108d3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborvalue.h.2F96B1FF4D395DF4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.73F95C2B212C4EF0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.73F95C2B212C4EF0.idx new file mode 100644 index 0000000..d4a2b0d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.73F95C2B212C4EF0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcollator.h.75A0BA51B64D7F75.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcollator.h.75A0BA51B64D7F75.idx new file mode 100644 index 0000000..a1e5ff6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcollator.h.75A0BA51B64D7F75.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcolor.h.6017450B7E3EA637.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcolor.h.6017450B7E3EA637.idx new file mode 100644 index 0000000..e803e58 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcolor.h.6017450B7E3EA637.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcombobox.h.097F92C5B715898A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcombobox.h.097F92C5B715898A.idx new file mode 100644 index 0000000..784bb09 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcombobox.h.097F92C5B715898A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcommandlineoption.h.FA62DEBDE144D221.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcommandlineoption.h.FA62DEBDE144D221.idx new file mode 100644 index 0000000..c4c1d11 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcommandlineoption.h.FA62DEBDE144D221.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcommandlineparser.h.EFC9085DAA1EAE2F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcommandlineparser.h.EFC9085DAA1EAE2F.idx new file mode 100644 index 0000000..89d01e6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcommandlineparser.h.EFC9085DAA1EAE2F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.FE13B2C29937F633.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.FE13B2C29937F633.idx new file mode 100644 index 0000000..f94a445 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.FE13B2C29937F633.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.3D09DB0B6932EA2D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.3D09DB0B6932EA2D.idx new file mode 100644 index 0000000..951d743 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.3D09DB0B6932EA2D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.5A05F454EDBA3383.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.5A05F454EDBA3383.idx new file mode 100644 index 0000000..dd51160 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.5A05F454EDBA3383.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.C8D4215B5C69C92C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.C8D4215B5C69C92C.idx new file mode 100644 index 0000000..928f081 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.C8D4215B5C69C92C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconcatenatetablesproxymodel.h.A330817033D255CE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconcatenatetablesproxymodel.h.A330817033D255CE.idx new file mode 100644 index 0000000..628bdba Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconcatenatetablesproxymodel.h.A330817033D255CE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.F47305CAFE84EC76.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.F47305CAFE84EC76.idx new file mode 100644 index 0000000..b523338 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.F47305CAFE84EC76.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.2F4388A7BC551FCD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.2F4388A7BC551FCD.idx new file mode 100644 index 0000000..e143d86 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.2F4388A7BC551FCD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.C867AE802A8F8F05.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.C867AE802A8F8F05.idx new file mode 100644 index 0000000..069e348 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.C867AE802A8F8F05.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.53D2F9DBA32B5A88.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.53D2F9DBA32B5A88.idx new file mode 100644 index 0000000..1d19a58 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.53D2F9DBA32B5A88.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.4F3DA79BFE439F6E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.4F3DA79BFE439F6E.idx new file mode 100644 index 0000000..17512f9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.4F3DA79BFE439F6E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.08CF92B58457FD61.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.08CF92B58457FD61.idx new file mode 100644 index 0000000..267ad67 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.08CF92B58457FD61.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.97DC5866B6983554.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.97DC5866B6983554.idx new file mode 100644 index 0000000..3771466 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.97DC5866B6983554.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.054408C7F3DF4275.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.054408C7F3DF4275.idx new file mode 100644 index 0000000..0056d04 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.054408C7F3DF4275.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.025B0AACBC1C43AB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.025B0AACBC1C43AB.idx new file mode 100644 index 0000000..9cb05b3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.025B0AACBC1C43AB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcryptographichash.h.BE990F837968CE40.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcryptographichash.h.BE990F837968CE40.idx new file mode 100644 index 0000000..c387988 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcryptographichash.h.BE990F837968CE40.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcursor.h.420D71973139D631.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcursor.h.420D71973139D631.idx new file mode 100644 index 0000000..49a5e01 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcursor.h.420D71973139D631.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.8611E1E8C6CF74B4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.8611E1E8C6CF74B4.idx new file mode 100644 index 0000000..8f152c6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.8611E1E8C6CF74B4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.30F7DBA8ECC8D34A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.30F7DBA8ECC8D34A.idx new file mode 100644 index 0000000..ec890e1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.30F7DBA8ECC8D34A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.33789510D34D0536.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.33789510D34D0536.idx new file mode 100644 index 0000000..805e754 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.33789510D34D0536.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetimeedit.h.336D733831D716F1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetimeedit.h.336D733831D716F1.idx new file mode 100644 index 0000000..6cbb4e9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetimeedit.h.336D733831D716F1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.44919E3EE38CF465.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.44919E3EE38CF465.idx new file mode 100644 index 0000000..1a04843 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.44919E3EE38CF465.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.B59B4835DB61CECC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.B59B4835DB61CECC.idx new file mode 100644 index 0000000..76b1a61 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.B59B4835DB61CECC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdialog.h.C2B7A949637F61A0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdialog.h.C2B7A949637F61A0.idx new file mode 100644 index 0000000..9c02002 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdialog.h.C2B7A949637F61A0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdialogbuttonbox.h.CADA2DAA7FC6BBF5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdialogbuttonbox.h.CADA2DAA7FC6BBF5.idx new file mode 100644 index 0000000..41ec1fe Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdialogbuttonbox.h.CADA2DAA7FC6BBF5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdir.h.A042C6D01DFF7784.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdir.h.A042C6D01DFF7784.idx new file mode 100644 index 0000000..4d0949e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdir.h.A042C6D01DFF7784.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdiriterator.h.AB57EE8ABBCA3F17.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdiriterator.h.AB57EE8ABBCA3F17.idx new file mode 100644 index 0000000..1ad5406 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdiriterator.h.AB57EE8ABBCA3F17.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeasingcurve.h.F9B0CF5A4D38EFE6.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeasingcurve.h.F9B0CF5A4D38EFE6.idx new file mode 100644 index 0000000..498d6be Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeasingcurve.h.F9B0CF5A4D38EFE6.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.1A1ED8874D683D2F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.1A1ED8874D683D2F.idx new file mode 100644 index 0000000..b2d081d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.1A1ED8874D683D2F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qendian.h.1280C1CED738F367.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qendian.h.1280C1CED738F367.idx new file mode 100644 index 0000000..da57607 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qendian.h.1280C1CED738F367.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qevent.h.8FDB288497FD30A4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qevent.h.8FDB288497FD30A4.idx new file mode 100644 index 0000000..9d358f2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qevent.h.8FDB288497FD30A4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.2F758AFDD2FC1265.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.2F758AFDD2FC1265.idx new file mode 100644 index 0000000..4158037 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.2F758AFDD2FC1265.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventpoint.h.02B47F1EAD5D7194.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventpoint.h.02B47F1EAD5D7194.idx new file mode 100644 index 0000000..d3f063f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventpoint.h.02B47F1EAD5D7194.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexception.h.6BD167B83EDAACC5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexception.h.6BD167B83EDAACC5.idx new file mode 100644 index 0000000..6391b3d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexception.h.6BD167B83EDAACC5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.17F32F1EDDC8FA73.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.17F32F1EDDC8FA73.idx new file mode 100644 index 0000000..d38c586 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.17F32F1EDDC8FA73.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfactoryinterface.h.18AE02552BCBF88B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfactoryinterface.h.18AE02552BCBF88B.idx new file mode 100644 index 0000000..dbb8f9d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfactoryinterface.h.18AE02552BCBF88B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfile.h.22E800B5CFF8160B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfile.h.22E800B5CFF8160B.idx new file mode 100644 index 0000000..6c82f53 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfile.h.22E800B5CFF8160B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfiledevice.h.1DDDDD0D74EA15D4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfiledevice.h.1DDDDD0D74EA15D4.idx new file mode 100644 index 0000000..e64444b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfiledevice.h.1DDDDD0D74EA15D4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfileinfo.h.A62770DEC67F8C6B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfileinfo.h.A62770DEC67F8C6B.idx new file mode 100644 index 0000000..3fb7763 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfileinfo.h.A62770DEC67F8C6B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfileselector.h.C38A9E46943AFF0B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfileselector.h.C38A9E46943AFF0B.idx new file mode 100644 index 0000000..d240e6f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfileselector.h.C38A9E46943AFF0B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfilesystemwatcher.h.E7D6C568938F4B1C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfilesystemwatcher.h.E7D6C568938F4B1C.idx new file mode 100644 index 0000000..391c6fd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfilesystemwatcher.h.E7D6C568938F4B1C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.6BFE31F16EDE9919.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.6BFE31F16EDE9919.idx new file mode 100644 index 0000000..caadf48 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.6BFE31F16EDE9919.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.BBBCAED8156ED3B9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.BBBCAED8156ED3B9.idx new file mode 100644 index 0000000..0e6c299 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.BBBCAED8156ED3B9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfont.h.47E7D1E32B75FE18.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfont.h.47E7D1E32B75FE18.idx new file mode 100644 index 0000000..6e37a61 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfont.h.47E7D1E32B75FE18.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontinfo.h.A6F116FE2AE84372.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontinfo.h.A6F116FE2AE84372.idx new file mode 100644 index 0000000..82c04d5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontinfo.h.A6F116FE2AE84372.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.100B2768B4E80558.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.100B2768B4E80558.idx new file mode 100644 index 0000000..cf9d01a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.100B2768B4E80558.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.C8E54C03468D1395.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.C8E54C03468D1395.idx new file mode 100644 index 0000000..b179361 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.C8E54C03468D1395.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qframe.h.84050353EAD1493D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qframe.h.84050353EAD1493D.idx new file mode 100644 index 0000000..04328fb Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qframe.h.84050353EAD1493D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.1F0341ED7AAB26D5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.1F0341ED7AAB26D5.idx new file mode 100644 index 0000000..966f45a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.1F0341ED7AAB26D5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.3ED51D54037B36E7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.3ED51D54037B36E7.idx new file mode 100644 index 0000000..88cf8b7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.3ED51D54037B36E7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfuture.h.0891E823CA8CE827.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfuture.h.0891E823CA8CE827.idx new file mode 100644 index 0000000..192cad3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfuture.h.0891E823CA8CE827.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfuture_impl.h.9F059A00C2166419.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfuture_impl.h.9F059A00C2166419.idx new file mode 100644 index 0000000..d4404a2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfuture_impl.h.9F059A00C2166419.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfutureinterface.h.C64A758A2090125B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfutureinterface.h.C64A758A2090125B.idx new file mode 100644 index 0000000..d67f89f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfutureinterface.h.C64A758A2090125B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfuturesynchronizer.h.3A7596E43B06AE3A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfuturesynchronizer.h.3A7596E43B06AE3A.idx new file mode 100644 index 0000000..5387c00 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfuturesynchronizer.h.3A7596E43B06AE3A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfuturewatcher.h.F03B4F4871B921C9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfuturewatcher.h.F03B4F4871B921C9.idx new file mode 100644 index 0000000..cd3a59b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfuturewatcher.h.F03B4F4871B921C9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.B8EF72551154BD1D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.B8EF72551154BD1D.idx new file mode 100644 index 0000000..7c84b16 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.B8EF72551154BD1D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericmatrix.h.32A79511553E45A4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericmatrix.h.32A79511553E45A4.idx new file mode 100644 index 0000000..070d94f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericmatrix.h.32A79511553E45A4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.B4F02431521D85BF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.B4F02431521D85BF.idx new file mode 100644 index 0000000..5ef7112 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.B4F02431521D85BF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.4DD85B1BF2A76CA9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.4DD85B1BF2A76CA9.idx new file mode 100644 index 0000000..7e46a37 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.4DD85B1BF2A76CA9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgridlayout.h.A20705C52D0806DB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgridlayout.h.A20705C52D0806DB.idx new file mode 100644 index 0000000..59a47f3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgridlayout.h.A20705C52D0806DB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication.h.ACC82FFB01BC69D8.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication.h.ACC82FFB01BC69D8.idx new file mode 100644 index 0000000..7189ecc Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication.h.ACC82FFB01BC69D8.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.5A5246781FB9982C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.5A5246781FB9982C.idx new file mode 100644 index 0000000..5dd2136 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.5A5246781FB9982C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.D69322A249A52B6F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.D69322A249A52B6F.idx new file mode 100644 index 0000000..bcd405a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.D69322A249A52B6F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.FEB3794DD28C1230.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.FEB3794DD28C1230.idx new file mode 100644 index 0000000..f9b3bf6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.FEB3794DD28C1230.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qicon.h.540C5A94F986F62E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qicon.h.540C5A94F986F62E.idx new file mode 100644 index 0000000..713e701 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qicon.h.540C5A94F986F62E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qidentityproxymodel.h.FEA57BCA277D6BAD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qidentityproxymodel.h.FEA57BCA277D6BAD.idx new file mode 100644 index 0000000..ff48cb7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qidentityproxymodel.h.FEA57BCA277D6BAD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qimage.h.DABE1A69EF1A45D3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qimage.h.DABE1A69EF1A45D3.idx new file mode 100644 index 0000000..21b2374 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qimage.h.DABE1A69EF1A45D3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputdevice.h.8F92F97974045B04.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputdevice.h.8F92F97974045B04.idx new file mode 100644 index 0000000..bf36fb8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputdevice.h.8F92F97974045B04.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputmethod.h.C397D4F1D8C6FC11.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputmethod.h.C397D4F1D8C6FC11.idx new file mode 100644 index 0000000..5053f60 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputmethod.h.C397D4F1D8C6FC11.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevice.h.FB379D3370F6529F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevice.h.FB379D3370F6529F.idx new file mode 100644 index 0000000..e962529 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevice.h.FB379D3370F6529F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.EC0645312B7B583F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.EC0645312B7B583F.idx new file mode 100644 index 0000000..6be247a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.EC0645312B7B583F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qitemselectionmodel.h.00A4000227F35A44.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qitemselectionmodel.h.00A4000227F35A44.idx new file mode 100644 index 0000000..85a18a0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qitemselectionmodel.h.00A4000227F35A44.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.32DC6CB051E0D0BA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.32DC6CB051E0D0BA.idx new file mode 100644 index 0000000..1f9fe5f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.32DC6CB051E0D0BA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.965B1763B1E71A54.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.965B1763B1E71A54.idx new file mode 100644 index 0000000..f77a464 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.965B1763B1E71A54.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsnumbercoercion.h.C7A67D403F4F5062.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsnumbercoercion.h.C7A67D403F4F5062.idx new file mode 100644 index 0000000..f3c2756 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsnumbercoercion.h.C7A67D403F4F5062.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonarray.h.46A1B413C7C7362E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonarray.h.46A1B413C7C7362E.idx new file mode 100644 index 0000000..20dda5d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonarray.h.46A1B413C7C7362E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsondocument.h.283F654E15041CCF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsondocument.h.283F654E15041CCF.idx new file mode 100644 index 0000000..4893f5e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsondocument.h.283F654E15041CCF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonobject.h.FE0DA2476BB51FAD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonobject.h.FE0DA2476BB51FAD.idx new file mode 100644 index 0000000..e20211f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonobject.h.FE0DA2476BB51FAD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonvalue.h.BB3E8DF2F9CBC2D5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonvalue.h.BB3E8DF2F9CBC2D5.idx new file mode 100644 index 0000000..4703e0d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonvalue.h.BB3E8DF2F9CBC2D5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsprimitivevalue.h.0084CB7DF60BB07D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsprimitivevalue.h.0084CB7DF60BB07D.idx new file mode 100644 index 0000000..ab179ee Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsprimitivevalue.h.0084CB7DF60BB07D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsvalue.h.9483B027C78C3C11.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsvalue.h.9483B027C78C3C11.idx new file mode 100644 index 0000000..2a7ee24 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsvalue.h.9483B027C78C3C11.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qkeysequence.h.EF3D8430DACB20F9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qkeysequence.h.EF3D8430DACB20F9.idx new file mode 100644 index 0000000..d5f9b33 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qkeysequence.h.EF3D8430DACB20F9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlabel.h.E0F01C28E8A717C1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlabel.h.E0F01C28E8A717C1.idx new file mode 100644 index 0000000..3c83868 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlabel.h.E0F01C28E8A717C1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringmatcher.h.1B10CF869AFBD6B3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringmatcher.h.1B10CF869AFBD6B3.idx new file mode 100644 index 0000000..a0f2d0a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringmatcher.h.1B10CF869AFBD6B3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.F85932EC432831D0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.F85932EC432831D0.idx new file mode 100644 index 0000000..f5df931 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.F85932EC432831D0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlayout.h.D65BC435D96EBA42.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlayout.h.D65BC435D96EBA42.idx new file mode 100644 index 0000000..90abdf8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlayout.h.D65BC435D96EBA42.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlayoutitem.h.5023E4D5174C252B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlayoutitem.h.5023E4D5174C252B.idx new file mode 100644 index 0000000..9ede662 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlayoutitem.h.5023E4D5174C252B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlibrary.h.75C8E9286E9D61B3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlibrary.h.75C8E9286E9D61B3.idx new file mode 100644 index 0000000..835208d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlibrary.h.75C8E9286E9D61B3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlibraryinfo.h.84854575C5A58B5E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlibraryinfo.h.84854575C5A58B5E.idx new file mode 100644 index 0000000..5b94884 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlibraryinfo.h.84854575C5A58B5E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qline.h.8AD7388A8557244F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qline.h.8AD7388A8557244F.idx new file mode 100644 index 0000000..2745cdb Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qline.h.8AD7388A8557244F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlineedit.h.F595B4903F08F59C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlineedit.h.F595B4903F08F59C.idx new file mode 100644 index 0000000..c36e490 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlineedit.h.F595B4903F08F59C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.62873A63BBA30D2C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.62873A63BBA30D2C.idx new file mode 100644 index 0000000..aa84ac2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.62873A63BBA30D2C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlistview.h.B190E6356850EC35.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlistview.h.B190E6356850EC35.idx new file mode 100644 index 0000000..477683c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlistview.h.B190E6356850EC35.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.269C45430BB6D3EA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.269C45430BB6D3EA.idx new file mode 100644 index 0000000..1ab3559 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.269C45430BB6D3EA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlockfile.h.363EB82005F8A8B6.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlockfile.h.363EB82005F8A8B6.idx new file mode 100644 index 0000000..952997e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlockfile.h.363EB82005F8A8B6.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.52D35182606F5045.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.52D35182606F5045.idx new file mode 100644 index 0000000..4aabb00 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.52D35182606F5045.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qloggingcategory.h.38CDE15C78A3EC59.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qloggingcategory.h.38CDE15C78A3EC59.idx new file mode 100644 index 0000000..c4334fc Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qloggingcategory.h.38CDE15C78A3EC59.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.6F942D728E5A3B14.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.6F942D728E5A3B14.idx new file mode 100644 index 0000000..0cd2806 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.6F942D728E5A3B14.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.E88606ED37A408C7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.E88606ED37A408C7.idx new file mode 100644 index 0000000..5ca4acb Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.E88606ED37A408C7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmargins.h.DE960EE23FAC738D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmargins.h.DE960EE23FAC738D.idx new file mode 100644 index 0000000..de0e75f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmargins.h.DE960EE23FAC738D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.88B9BCB5BA5BCFFD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.88B9BCB5BA5BCFFD.idx new file mode 100644 index 0000000..16dc07a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.88B9BCB5BA5BCFFD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmatrix4x4.h.7266C3DA8CB98C80.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmatrix4x4.h.7266C3DA8CB98C80.idx new file mode 100644 index 0000000..c2b3974 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmatrix4x4.h.7266C3DA8CB98C80.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmediaenumdebug.h.ED9548BF829AE7FA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmediaenumdebug.h.ED9548BF829AE7FA.idx new file mode 100644 index 0000000..b3baa90 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmediaenumdebug.h.ED9548BF829AE7FA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmediaplayer.h.7E03D2B1FB43D795.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmediaplayer.h.7E03D2B1FB43D795.idx new file mode 100644 index 0000000..e241ae2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmediaplayer.h.7E03D2B1FB43D795.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmessageauthenticationcode.h.7F7CE4C5B4515ED9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmessageauthenticationcode.h.7F7CE4C5B4515ED9.idx new file mode 100644 index 0000000..2fe79c1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmessageauthenticationcode.h.7F7CE4C5B4515ED9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmessagebox.h.DF2D49E33BFF117C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmessagebox.h.DF2D49E33BFF117C.idx new file mode 100644 index 0000000..270a41a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmessagebox.h.DF2D49E33BFF117C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.C77FF0380D4EF407.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.C77FF0380D4EF407.idx new file mode 100644 index 0000000..946a8b8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.C77FF0380D4EF407.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetaobject.h.A9D30521345AC24A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetaobject.h.A9D30521345AC24A.idx new file mode 100644 index 0000000..2b954b6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetaobject.h.A9D30521345AC24A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.C4DF18B61BCE50DB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.C4DF18B61BCE50DB.idx new file mode 100644 index 0000000..7d21cb8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.C4DF18B61BCE50DB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmimedata.h.DAC2EBFE43479339.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmimedata.h.DAC2EBFE43479339.idx new file mode 100644 index 0000000..51a0ca3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmimedata.h.DAC2EBFE43479339.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmimedatabase.h.38A981D3CB2EA90C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmimedatabase.h.38A981D3CB2EA90C.idx new file mode 100644 index 0000000..b5ee500 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmimedatabase.h.38A981D3CB2EA90C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmimetype.h.E5DE897FA592FD8A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmimetype.h.E5DE897FA592FD8A.idx new file mode 100644 index 0000000..50a7e25 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmimetype.h.E5DE897FA592FD8A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.054CAFC3A89C8F5F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.054CAFC3A89C8F5F.idx new file mode 100644 index 0000000..c0e1f2e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.054CAFC3A89C8F5F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmutex.h.17676C8ED012B7EA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmutex.h.17676C8ED012B7EA.idx new file mode 100644 index 0000000..e2c0ab0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmutex.h.17676C8ED012B7EA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.B703EB943A645F2B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.B703EB943A645F2B.idx new file mode 100644 index 0000000..8828669 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.B703EB943A645F2B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.640DDFCF07461C44.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.640DDFCF07461C44.idx new file mode 100644 index 0000000..bd2ad59 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.640DDFCF07461C44.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.5B103C0252C8E1CD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.5B103C0252C8E1CD.idx new file mode 100644 index 0000000..d2992c6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.5B103C0252C8E1CD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.30C747A2CD6C75F4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.30C747A2CD6C75F4.idx new file mode 100644 index 0000000..74fed2d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.30C747A2CD6C75F4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.31698504FBEEB364.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.31698504FBEEB364.idx new file mode 100644 index 0000000..16af488 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.31698504FBEEB364.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectcleanuphandler.h.5BC9261A0864AE5C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectcleanuphandler.h.5BC9261A0864AE5C.idx new file mode 100644 index 0000000..4394a04 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectcleanuphandler.h.5BC9261A0864AE5C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.012D913BA6CE3171.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.012D913BA6CE3171.idx new file mode 100644 index 0000000..63f654c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.012D913BA6CE3171.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.F55220F6151EECF0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.F55220F6151EECF0.idx new file mode 100644 index 0000000..93ac047 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.F55220F6151EECF0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.FBCD0CBB4BC93301.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.FBCD0CBB4BC93301.idx new file mode 100644 index 0000000..ea4ca0d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.FBCD0CBB4BC93301.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoperatingsystemversion.h.C01F7DD3FB099E3D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoperatingsystemversion.h.C01F7DD3FB099E3D.idx new file mode 100644 index 0000000..50ca7d5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoperatingsystemversion.h.C01F7DD3FB099E3D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.3D0A7449C90B8A77.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.3D0A7449C90B8A77.idx new file mode 100644 index 0000000..526b13d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.3D0A7449C90B8A77.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.3C48CBACB195C0C2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.3C48CBACB195C0C2.idx new file mode 100644 index 0000000..76faed3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.3C48CBACB195C0C2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.C16D41B0DA88A83E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.C16D41B0DA88A83E.idx new file mode 100644 index 0000000..cda71f3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.C16D41B0DA88A83E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpalette.h.A60485F8C7263DF9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpalette.h.A60485F8C7263DF9.idx new file mode 100644 index 0000000..08d965b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpalette.h.A60485F8C7263DF9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qparallelanimationgroup.h.14CE8A6D5C159D12.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qparallelanimationgroup.h.14CE8A6D5C159D12.idx new file mode 100644 index 0000000..89ce545 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qparallelanimationgroup.h.14CE8A6D5C159D12.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpauseanimation.h.27BDC661D29F2330.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpauseanimation.h.27BDC661D29F2330.idx new file mode 100644 index 0000000..5fe04b9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpauseanimation.h.27BDC661D29F2330.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpen.h.BC69978572C4F00D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpen.h.BC69978572C4F00D.idx new file mode 100644 index 0000000..6cc45b8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpen.h.BC69978572C4F00D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpermissions.h.6BF191CAC03590E3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpermissions.h.6BF191CAC03590E3.idx new file mode 100644 index 0000000..d5c4d52 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpermissions.h.6BF191CAC03590E3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpicture.h.45181BC0195A820B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpicture.h.45181BC0195A820B.idx new file mode 100644 index 0000000..819da50 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpicture.h.45181BC0195A820B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixelformat.h.D60065D9B04215E4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixelformat.h.D60065D9B04215E4.idx new file mode 100644 index 0000000..dbcf437 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixelformat.h.D60065D9B04215E4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixmap.h.46F520346DECE444.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixmap.h.46F520346DECE444.idx new file mode 100644 index 0000000..4ce6a49 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixmap.h.46F520346DECE444.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qplugin.h.104E01025FAF19B3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qplugin.h.104E01025FAF19B3.idx new file mode 100644 index 0000000..657a462 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qplugin.h.104E01025FAF19B3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpluginloader.h.49B7DC678E43F8B2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpluginloader.h.49B7DC678E43F8B2.idx new file mode 100644 index 0000000..0b878ae Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpluginloader.h.49B7DC678E43F8B2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpoint.h.7318CFB46A38DA15.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpoint.h.7318CFB46A38DA15.idx new file mode 100644 index 0000000..a234122 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpoint.h.7318CFB46A38DA15.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpointer.h.60B2DA2C9C44D182.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpointer.h.60B2DA2C9C44D182.idx new file mode 100644 index 0000000..f5681c2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpointer.h.60B2DA2C9C44D182.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpointingdevice.h.94209B81D1678ED4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpointingdevice.h.94209B81D1678ED4.idx new file mode 100644 index 0000000..7618da0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpointingdevice.h.94209B81D1678ED4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpolygon.h.E3A18464BDA7CA35.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpolygon.h.E3A18464BDA7CA35.idx new file mode 100644 index 0000000..7ae1846 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpolygon.h.E3A18464BDA7CA35.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocess.h.6DFFEA8DDF41BD39.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocess.h.6DFFEA8DDF41BD39.idx new file mode 100644 index 0000000..f06515f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocess.h.6DFFEA8DDF41BD39.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.0DFFEA7FCFD775D9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.0DFFEA7FCFD775D9.idx new file mode 100644 index 0000000..d827e72 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.0DFFEA7FCFD775D9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpromise.h.4C5BC5FDCFB16F7A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpromise.h.4C5BC5FDCFB16F7A.idx new file mode 100644 index 0000000..5b99c72 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpromise.h.4C5BC5FDCFB16F7A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qproperty.h.932D950B0EA92850.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qproperty.h.932D950B0EA92850.idx new file mode 100644 index 0000000..9da05de Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qproperty.h.932D950B0EA92850.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpropertyanimation.h.B00516D12BF37825.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpropertyanimation.h.B00516D12BF37825.idx new file mode 100644 index 0000000..bc9095b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpropertyanimation.h.B00516D12BF37825.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpropertyprivate.h.30B8CDFB896449EB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpropertyprivate.h.30B8CDFB896449EB.idx new file mode 100644 index 0000000..eb13614 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpropertyprivate.h.30B8CDFB896449EB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpushbutton.h.C8DC893B5CDB3F91.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpushbutton.h.C8DC893B5CDB3F91.idx new file mode 100644 index 0000000..2338fd4 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpushbutton.h.C8DC893B5CDB3F91.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqml.h.2BDFEC90F8C3E84A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqml.h.2BDFEC90F8C3E84A.idx new file mode 100644 index 0000000..00e2c6d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqml.h.2BDFEC90F8C3E84A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlcomponent.h.B59CC2741191F4F5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlcomponent.h.B59CC2741191F4F5.idx new file mode 100644 index 0000000..1771244 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlcomponent.h.B59CC2741191F4F5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmldebug.h.AD9340DC23056009.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmldebug.h.AD9340DC23056009.idx new file mode 100644 index 0000000..986ccf3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmldebug.h.AD9340DC23056009.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlerror.h.ADE2410555BB0098.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlerror.h.ADE2410555BB0098.idx new file mode 100644 index 0000000..930f98e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlerror.h.ADE2410555BB0098.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlinfo.h.9FC739ADB6D5AADC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlinfo.h.9FC739ADB6D5AADC.idx new file mode 100644 index 0000000..44648a4 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlinfo.h.9FC739ADB6D5AADC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlintegration.h.EF41C579173E9037.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlintegration.h.EF41C579173E9037.idx new file mode 100644 index 0000000..7741e52 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlintegration.h.EF41C579173E9037.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmllist.h.F31F79FB4277B191.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmllist.h.F31F79FB4277B191.idx new file mode 100644 index 0000000..f182122 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmllist.h.F31F79FB4277B191.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlparserstatus.h.421CF2E418F70A62.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlparserstatus.h.421CF2E418F70A62.idx new file mode 100644 index 0000000..a87c668 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlparserstatus.h.421CF2E418F70A62.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlprivate.h.D90004A0C5688684.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlprivate.h.D90004A0C5688684.idx new file mode 100644 index 0000000..704b84c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlprivate.h.D90004A0C5688684.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlpropertyvaluesource.h.BBC22C1BFA9DB208.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlpropertyvaluesource.h.BBC22C1BFA9DB208.idx new file mode 100644 index 0000000..f2940a6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlpropertyvaluesource.h.BBC22C1BFA9DB208.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlregistration.h.212C537EEA2108BC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlregistration.h.212C537EEA2108BC.idx new file mode 100644 index 0000000..c7ea317 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqmlregistration.h.212C537EEA2108BC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qquaternion.h.8FFAB24470FAEBC0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qquaternion.h.8FFAB24470FAEBC0.idx new file mode 100644 index 0000000..55e19f5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qquaternion.h.8FFAB24470FAEBC0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqueue.h.C9C70528F84F21EE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqueue.h.C9C70528F84F21EE.idx new file mode 100644 index 0000000..c3780a0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qqueue.h.C9C70528F84F21EE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qquickitem.h.13C7D4D666FD25F3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qquickitem.h.13C7D4D666FD25F3.idx new file mode 100644 index 0000000..8eb1583 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qquickitem.h.13C7D4D666FD25F3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qquickwidget.h.9657AFD28D912AA3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qquickwidget.h.9657AFD28D912AA3.idx new file mode 100644 index 0000000..6255aca Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qquickwidget.h.9657AFD28D912AA3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qquickwindow.h.C8B3771E2C841524.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qquickwindow.h.C8B3771E2C841524.idx new file mode 100644 index 0000000..91f61d9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qquickwindow.h.C8B3771E2C841524.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrandom.h.E77D558B08FA9AEF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrandom.h.E77D558B08FA9AEF.idx new file mode 100644 index 0000000..f8aba84 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrandom.h.E77D558B08FA9AEF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qreadwritelock.h.B2DE6045C3CFDD25.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qreadwritelock.h.B2DE6045C3CFDD25.idx new file mode 100644 index 0000000..3353110 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qreadwritelock.h.B2DE6045C3CFDD25.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrect.h.19EF87F2DDB44C26.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrect.h.19EF87F2DDB44C26.idx new file mode 100644 index 0000000..03eb228 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrect.h.19EF87F2DDB44C26.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.90927D74B148EA67.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.90927D74B148EA67.idx new file mode 100644 index 0000000..4301591 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.90927D74B148EA67.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregion.h.5C03E0EE0872CEC2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregion.h.5C03E0EE0872CEC2.idx new file mode 100644 index 0000000..4160f39 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregion.h.5C03E0EE0872CEC2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregularexpression.h.18986751764DC7E1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregularexpression.h.18986751764DC7E1.idx new file mode 100644 index 0000000..d715ffa Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregularexpression.h.18986751764DC7E1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qresource.h.8429A92350871D72.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qresource.h.8429A92350871D72.idx new file mode 100644 index 0000000..8986621 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qresource.h.8429A92350871D72.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qresultstore.h.B46252E747BE7E9F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qresultstore.h.B46252E747BE7E9F.idx new file mode 100644 index 0000000..0c6ac69 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qresultstore.h.B46252E747BE7E9F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgb.h.71A1BA9F039835EA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgb.h.71A1BA9F039835EA.idx new file mode 100644 index 0000000..abe3c3b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgb.h.71A1BA9F039835EA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgba64.h.7CDA2827B463B92C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgba64.h.7CDA2827B463B92C.idx new file mode 100644 index 0000000..946bd55 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgba64.h.7CDA2827B463B92C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrubberband.h.6508924A398A4210.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrubberband.h.6508924A398A4210.idx new file mode 100644 index 0000000..6df51dd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrubberband.h.6508924A398A4210.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrunnable.h.B3A2A956C5F39556.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrunnable.h.B3A2A956C5F39556.idx new file mode 100644 index 0000000..afa6b01 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrunnable.h.B3A2A956C5F39556.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsavefile.h.16B1C9C58A107331.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsavefile.h.16B1C9C58A107331.idx new file mode 100644 index 0000000..40cb44a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsavefile.h.16B1C9C58A107331.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.23FEC3BE5C42E500.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.23FEC3BE5C42E500.idx new file mode 100644 index 0000000..5077a35 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.23FEC3BE5C42E500.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedvaluerollback.h.44562C208CE974C3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedvaluerollback.h.44562C208CE974C3.idx new file mode 100644 index 0000000..3a5e1df Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedvaluerollback.h.44562C208CE974C3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.D8522E7D473273DA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.D8522E7D473273DA.idx new file mode 100644 index 0000000..87bd73e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.D8522E7D473273DA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscreen.h.608AAB25E3C7BDD1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscreen.h.608AAB25E3C7BDD1.idx new file mode 100644 index 0000000..08518cf Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscreen.h.608AAB25E3C7BDD1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscreen_platform.h.63C2B06699ED1AAD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscreen_platform.h.63C2B06699ED1AAD.idx new file mode 100644 index 0000000..752f2bf Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscreen_platform.h.63C2B06699ED1AAD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsemaphore.h.4E923D2360B59807.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsemaphore.h.4E923D2360B59807.idx new file mode 100644 index 0000000..ea3f0cf Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsemaphore.h.4E923D2360B59807.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsequentialanimationgroup.h.23DEA47102A5E8A3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsequentialanimationgroup.h.23DEA47102A5E8A3.idx new file mode 100644 index 0000000..3678e66 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsequentialanimationgroup.h.23DEA47102A5E8A3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsequentialiterable.h.BA3CF59FAB35F017.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsequentialiterable.h.BA3CF59FAB35F017.idx new file mode 100644 index 0000000..01bbcc0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsequentialiterable.h.BA3CF59FAB35F017.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.F35058643C18ABFA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.F35058643C18ABFA.idx new file mode 100644 index 0000000..a5e7c4d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.F35058643C18ABFA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsettings.h.FD1694191DB70C18.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsettings.h.FD1694191DB70C18.idx new file mode 100644 index 0000000..c3ddf73 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsettings.h.FD1694191DB70C18.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsggeometry.h.35CA25C86951BA91.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsggeometry.h.35CA25C86951BA91.idx new file mode 100644 index 0000000..279a5e1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsggeometry.h.35CA25C86951BA91.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsgnode.h.4655F0D8E48EFFAA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsgnode.h.4655F0D8E48EFFAA.idx new file mode 100644 index 0000000..35103f5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsgnode.h.4655F0D8E48EFFAA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsgrendererinterface.h.94525A27117D49E7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsgrendererinterface.h.94525A27117D49E7.idx new file mode 100644 index 0000000..9bbcb18 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsgrendererinterface.h.94525A27117D49E7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.BB10B034BB3199F5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.BB10B034BB3199F5.idx new file mode 100644 index 0000000..fc70a47 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.BB10B034BB3199F5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.B33725E079446C87.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.B33725E079446C87.idx new file mode 100644 index 0000000..bd6987d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.B33725E079446C87.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedmemory.h.067ABB361C5F7E28.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedmemory.h.067ABB361C5F7E28.idx new file mode 100644 index 0000000..9a39da6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedmemory.h.067ABB361C5F7E28.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.18E986FEEA7995A5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.18E986FEEA7995A5.idx new file mode 100644 index 0000000..0e54846 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.18E986FEEA7995A5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.CF649B0FFED4224E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.CF649B0FFED4224E.idx new file mode 100644 index 0000000..efa3c38 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.CF649B0FFED4224E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsignalmapper.h.27D145D370F63976.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsignalmapper.h.27D145D370F63976.idx new file mode 100644 index 0000000..5c64d9e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsignalmapper.h.27D145D370F63976.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsimd.h.7914AC24375C891B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsimd.h.7914AC24375C891B.idx new file mode 100644 index 0000000..cd993d7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsimd.h.7914AC24375C891B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsize.h.B6842FE114965168.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsize.h.B6842FE114965168.idx new file mode 100644 index 0000000..78a01d4 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsize.h.B6842FE114965168.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.10BA97AB20B4080F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.10BA97AB20B4080F.idx new file mode 100644 index 0000000..8453220 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.10BA97AB20B4080F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qslider.h.FD2FB3E2621CD69A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qslider.h.FD2FB3E2621CD69A.idx new file mode 100644 index 0000000..eb36846 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qslider.h.FD2FB3E2621CD69A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsocketnotifier.h.11B16A1F294BB9B3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsocketnotifier.h.11B16A1F294BB9B3.idx new file mode 100644 index 0000000..fc6ae6b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsocketnotifier.h.11B16A1F294BB9B3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsortfilterproxymodel.h.CE57D5559E1C4505.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsortfilterproxymodel.h.CE57D5559E1C4505.idx new file mode 100644 index 0000000..4f3d1fa Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsortfilterproxymodel.h.CE57D5559E1C4505.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qspan.h.680E26800B4D78F3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qspan.h.680E26800B4D78F3.idx new file mode 100644 index 0000000..8be3f6a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qspan.h.680E26800B4D78F3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqldatabase.h.FFA0CE08EF2EE028.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqldatabase.h.FFA0CE08EF2EE028.idx new file mode 100644 index 0000000..a775c3d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqldatabase.h.FFA0CE08EF2EE028.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqldriver.h.EFCB0AFF90E104E6.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqldriver.h.EFCB0AFF90E104E6.idx new file mode 100644 index 0000000..2a5e4f9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqldriver.h.EFCB0AFF90E104E6.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqldriverplugin.h.9606D1544E9F7313.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqldriverplugin.h.9606D1544E9F7313.idx new file mode 100644 index 0000000..adf60f0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqldriverplugin.h.9606D1544E9F7313.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlerror.h.F3F7CE055318F9E1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlerror.h.F3F7CE055318F9E1.idx new file mode 100644 index 0000000..9dd43ee Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlerror.h.F3F7CE055318F9E1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlfield.h.CF30D790A126413A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlfield.h.CF30D790A126413A.idx new file mode 100644 index 0000000..5856a04 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlfield.h.CF30D790A126413A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlindex.h.E314BFF598897CD3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlindex.h.E314BFF598897CD3.idx new file mode 100644 index 0000000..e03c993 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlindex.h.E314BFF598897CD3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlquery.h.F113AD9F2DBAD922.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlquery.h.F113AD9F2DBAD922.idx new file mode 100644 index 0000000..4287428 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlquery.h.F113AD9F2DBAD922.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlquerymodel.h.B2BC37B36234D93D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlquerymodel.h.B2BC37B36234D93D.idx new file mode 100644 index 0000000..21dc589 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlquerymodel.h.B2BC37B36234D93D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlrecord.h.507FF49FE199DED7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlrecord.h.507FF49FE199DED7.idx new file mode 100644 index 0000000..e0800b0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlrecord.h.507FF49FE199DED7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlrelationaldelegate.h.270A4661D5713F98.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlrelationaldelegate.h.270A4661D5713F98.idx new file mode 100644 index 0000000..cb0d32a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlrelationaldelegate.h.270A4661D5713F98.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlrelationaltablemodel.h.2E2FFDEBBD7E6045.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlrelationaltablemodel.h.2E2FFDEBBD7E6045.idx new file mode 100644 index 0000000..dbf1e9e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlrelationaltablemodel.h.2E2FFDEBBD7E6045.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlresult.h.A420EA3F4B65A91C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlresult.h.A420EA3F4B65A91C.idx new file mode 100644 index 0000000..06138e2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqlresult.h.A420EA3F4B65A91C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqltablemodel.h.CEEFED38AE15395E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqltablemodel.h.CEEFED38AE15395E.idx new file mode 100644 index 0000000..58f9b49 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsqltablemodel.h.CEEFED38AE15395E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstack.h.1B1AF6CBB26D9E26.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstack.h.1B1AF6CBB26D9E26.idx new file mode 100644 index 0000000..efd2566 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstack.h.1B1AF6CBB26D9E26.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstandardpaths.h.1C4C84096DE37F3B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstandardpaths.h.1C4C84096DE37F3B.idx new file mode 100644 index 0000000..7c658ad Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstandardpaths.h.1C4C84096DE37F3B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstaticlatin1stringmatcher.h.E8969705ED168D9D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstaticlatin1stringmatcher.h.E8969705ED168D9D.idx new file mode 100644 index 0000000..3ca0ee8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstaticlatin1stringmatcher.h.E8969705ED168D9D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstorageinfo.h.D199ABE3BD220C22.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstorageinfo.h.D199ABE3BD220C22.idx new file mode 100644 index 0000000..1272d96 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstorageinfo.h.D199ABE3BD220C22.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.0440BABDA864D328.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.0440BABDA864D328.idx new file mode 100644 index 0000000..65852f5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.0440BABDA864D328.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.02988B090160AC90.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.02988B090160AC90.idx new file mode 100644 index 0000000..ca80b2a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.02988B090160AC90.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.647BC890BF6C861E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.647BC890BF6C861E.idx new file mode 100644 index 0000000..2509b0a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.647BC890BF6C861E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter.h.D619F47576574597.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter.h.D619F47576574597.idx new file mode 100644 index 0000000..5d827ef Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter.h.D619F47576574597.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.14E3ABF5D02E9C9A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.14E3ABF5D02E9C9A.idx new file mode 100644 index 0000000..433fe40 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.14E3ABF5D02E9C9A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.4E4386EAFD89B4C1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.4E4386EAFD89B4C1.idx new file mode 100644 index 0000000..bd5c4d5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.4E4386EAFD89B4C1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.DA2BAD8517E47C40.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.DA2BAD8517E47C40.idx new file mode 100644 index 0000000..7784cbf Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.DA2BAD8517E47C40.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlistmodel.h.14F2A25E1DDBCCCC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlistmodel.h.14F2A25E1DDBCCCC.idx new file mode 100644 index 0000000..9318c45 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlistmodel.h.14F2A25E1DDBCCCC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.CFC270ED15E87DF2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.CFC270ED15E87DF2.idx new file mode 100644 index 0000000..40ee804 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.CFC270ED15E87DF2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.C0A4174001DC7080.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.C0A4174001DC7080.idx new file mode 100644 index 0000000..a9f21d0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.C0A4174001DC7080.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.134242169EB539D0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.134242169EB539D0.idx new file mode 100644 index 0000000..38f6192 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.134242169EB539D0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.09E71652701AF0AB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.09E71652701AF0AB.idx new file mode 100644 index 0000000..f5d0647 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.09E71652701AF0AB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyle.h.929DD832641CC27A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyle.h.929DD832641CC27A.idx new file mode 100644 index 0000000..b0bc981 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyle.h.929DD832641CC27A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyleditemdelegate.h.717EB990871A85F1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyleditemdelegate.h.717EB990871A85F1.idx new file mode 100644 index 0000000..e9d9fa8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyleditemdelegate.h.717EB990871A85F1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyleoption.h.AC055F1A9EAC5FA7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyleoption.h.AC055F1A9EAC5FA7.idx new file mode 100644 index 0000000..c3671b0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstyleoption.h.AC055F1A9EAC5FA7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsurface.h.ED12FED7B16E11BD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsurface.h.ED12FED7B16E11BD.idx new file mode 100644 index 0000000..6e61eea Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsurface.h.ED12FED7B16E11BD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsurfaceformat.h.FC95E5EE5FD96D98.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsurfaceformat.h.FC95E5EE5FD96D98.idx new file mode 100644 index 0000000..a4b74c3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsurfaceformat.h.FC95E5EE5FD96D98.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.1215DB58A5CFA247.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.1215DB58A5CFA247.idx new file mode 100644 index 0000000..8e5440d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.1215DB58A5CFA247.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.D72D612F996ACE6A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.D72D612F996ACE6A.idx new file mode 100644 index 0000000..44cd73c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.D72D612F996ACE6A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.81CA01B6EAC01B41.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.81CA01B6EAC01B41.idx new file mode 100644 index 0000000..5135dd6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.81CA01B6EAC01B41.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemsemaphore.h.05634A1D241D5A5C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemsemaphore.h.05634A1D241D5A5C.idx new file mode 100644 index 0000000..322dc78 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemsemaphore.h.05634A1D241D5A5C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabbar.h.81FFF62536E8EFC4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabbar.h.81FFF62536E8EFC4.idx new file mode 100644 index 0000000..20feda6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabbar.h.81FFF62536E8EFC4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabwidget.h.DB5B0E5960593AB6.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabwidget.h.DB5B0E5960593AB6.idx new file mode 100644 index 0000000..96e7f8b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabwidget.h.DB5B0E5960593AB6.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.EE9D99D59AFC91CF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.EE9D99D59AFC91CF.idx new file mode 100644 index 0000000..bd3c303 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.EE9D99D59AFC91CF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaudio.h.FC45F8DD6BFF1937.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaudio.h.FC45F8DD6BFF1937.idx new file mode 100644 index 0000000..82afd8d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaudio.h.FC45F8DD6BFF1937.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.33EAE9DD3FECBF29.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.33EAE9DD3FECBF29.idx new file mode 100644 index 0000000..26f0133 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.33EAE9DD3FECBF29.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.670A979BB1C68F42.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.670A979BB1C68F42.idx new file mode 100644 index 0000000..3c74782 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.670A979BB1C68F42.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.D5CE5E8D224796F9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.D5CE5E8D224796F9.idx new file mode 100644 index 0000000..728c621 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.D5CE5E8D224796F9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.0D3E00782A3931CB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.0D3E00782A3931CB.idx new file mode 100644 index 0000000..a7183c9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.0D3E00782A3931CB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.6864189E8D809C7B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.6864189E8D809C7B.idx new file mode 100644 index 0000000..ff7af27 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.6864189E8D809C7B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreversion.h.872059D1B2298E02.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreversion.h.872059D1B2298E02.idx new file mode 100644 index 0000000..160b243 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreversion.h.872059D1B2298E02.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.87CCF8D82DE985F1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.87CCF8D82DE985F1.idx new file mode 100644 index 0000000..e501fd9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.87CCF8D82DE985F1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtemporarydir.h.895D82EB0D5E0A37.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtemporarydir.h.895D82EB0D5E0A37.idx new file mode 100644 index 0000000..afa9b84 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtemporarydir.h.895D82EB0D5E0A37.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtemporaryfile.h.1855F6F3D1B7BBBE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtemporaryfile.h.1855F6F3D1B7BBBE.idx new file mode 100644 index 0000000..8948939 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtemporaryfile.h.1855F6F3D1B7BBBE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.FF892D2B3D0C7285.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.FF892D2B3D0C7285.idx new file mode 100644 index 0000000..f304ad1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.FF892D2B3D0C7285.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextboundaryfinder.h.C97061D8FEFCE1C1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextboundaryfinder.h.C97061D8FEFCE1C1.idx new file mode 100644 index 0000000..0e2cb52 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextboundaryfinder.h.C97061D8FEFCE1C1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextcursor.h.F0BFB47E7814F2E7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextcursor.h.F0BFB47E7814F2E7.idx new file mode 100644 index 0000000..116a706 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextcursor.h.F0BFB47E7814F2E7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextdocument.h.BB86F6796B321C4B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextdocument.h.BB86F6796B321C4B.idx new file mode 100644 index 0000000..e35157c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextdocument.h.BB86F6796B321C4B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextformat.h.8CC7304E057E9644.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextformat.h.8CC7304E057E9644.idx new file mode 100644 index 0000000..9c28f61 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextformat.h.8CC7304E057E9644.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextoption.h.C7B948DE2066B1E5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextoption.h.C7B948DE2066B1E5.idx new file mode 100644 index 0000000..f4c32e3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextoption.h.C7B948DE2066B1E5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.D03FE76AFF5629DA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.D03FE76AFF5629DA.idx new file mode 100644 index 0000000..64d5b65 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.D03FE76AFF5629DA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtgui-config.h.8B56246A55A195A1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtgui-config.h.8B56246A55A195A1.idx new file mode 100644 index 0000000..d8fb683 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtgui-config.h.8B56246A55A195A1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiexports.h.B7DDC02609A6705A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiexports.h.B7DDC02609A6705A.idx new file mode 100644 index 0000000..1d7c017 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiexports.h.B7DDC02609A6705A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.E82FEDB6BB5774E1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.E82FEDB6BB5774E1.idx new file mode 100644 index 0000000..ab9dacc Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.E82FEDB6BB5774E1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qthread.h.465350FE0807D9EC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qthread.h.465350FE0807D9EC.idx new file mode 100644 index 0000000..807c34e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qthread.h.465350FE0807D9EC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qthreadpool.h.321DE855776E503D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qthreadpool.h.321DE855776E503D.idx new file mode 100644 index 0000000..5295eea Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qthreadpool.h.321DE855776E503D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qthreadstorage.h.B80302B12141F944.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qthreadstorage.h.B80302B12141F944.idx new file mode 100644 index 0000000..c5a39dc Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qthreadstorage.h.B80302B12141F944.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimeline.h.A0EEE2BE47FC0528.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimeline.h.A0EEE2BE47FC0528.idx new file mode 100644 index 0000000..100da7e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimeline.h.A0EEE2BE47FC0528.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimer.h.4BCA1D35CB65EA7F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimer.h.4BCA1D35CB65EA7F.idx new file mode 100644 index 0000000..0231727 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimer.h.4BCA1D35CB65EA7F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimezone.h.36215E9F496C60EC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimezone.h.36215E9F496C60EC.idx new file mode 100644 index 0000000..802c797 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimezone.h.36215E9F496C60EC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtipccommon.h.DFDAD37D85F1F12D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtipccommon.h.DFDAD37D85F1F12D.idx new file mode 100644 index 0000000..041b21f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtipccommon.h.DFDAD37D85F1F12D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.8AA22A0E4D7BF97A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.8AA22A0E4D7BF97A.idx new file mode 100644 index 0000000..d7243dc Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.8AA22A0E4D7BF97A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimedia-config.h.DB5A5992EDE67BA3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimedia-config.h.DB5A5992EDE67BA3.idx new file mode 100644 index 0000000..0fb092f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimedia-config.h.DB5A5992EDE67BA3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimediaexports.h.6234382C27B06CF9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimediaexports.h.6234382C27B06CF9.idx new file mode 100644 index 0000000..503fd33 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimediaexports.h.6234382C27B06CF9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimediaglobal.h.46C09589D4979C9D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimediaglobal.h.46C09589D4979C9D.idx new file mode 100644 index 0000000..e433977 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimediaglobal.h.46C09589D4979C9D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimediawidgetsexports.h.00CCA547E84FAE2B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimediawidgetsexports.h.00CCA547E84FAE2B.idx new file mode 100644 index 0000000..3469258 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimediawidgetsexports.h.00CCA547E84FAE2B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimediawidgetsglobal.h.62EB81952DFE8828.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimediawidgetsglobal.h.62EB81952DFE8828.idx new file mode 100644 index 0000000..a42e220 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmultimediawidgetsglobal.h.62EB81952DFE8828.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnetwork-config.h.06BA6920A7D01BBD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnetwork-config.h.06BA6920A7D01BBD.idx new file mode 100644 index 0000000..2b2b219 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnetwork-config.h.06BA6920A7D01BBD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnetworkexports.h.AEFD976A846484BB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnetworkexports.h.AEFD976A846484BB.idx new file mode 100644 index 0000000..0ba4343 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnetworkexports.h.AEFD976A846484BB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnetworkglobal.h.6AFAC2C28E114921.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnetworkglobal.h.6AFAC2C28E114921.idx new file mode 100644 index 0000000..77e3c83 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnetworkglobal.h.6AFAC2C28E114921.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.B62017CAC32D03B5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.B62017CAC32D03B5.idx new file mode 100644 index 0000000..03cf39a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.B62017CAC32D03B5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.4FEB1F06765F72CA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.4FEB1F06765F72CA.idx new file mode 100644 index 0000000..c2b2922 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.4FEB1F06765F72CA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtqml-config.h.5A0134459E08E5EA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtqml-config.h.5A0134459E08E5EA.idx new file mode 100644 index 0000000..2deb6a0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtqml-config.h.5A0134459E08E5EA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtqmlexports.h.7ED51571AA8AF283.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtqmlexports.h.7ED51571AA8AF283.idx new file mode 100644 index 0000000..2c2f5e1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtqmlexports.h.7ED51571AA8AF283.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtqmlglobal.h.4FCD3BD3173F22B0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtqmlglobal.h.4FCD3BD3173F22B0.idx new file mode 100644 index 0000000..99285e7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtqmlglobal.h.4FCD3BD3173F22B0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquick-config.h.FC73BE765461D209.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquick-config.h.FC73BE765461D209.idx new file mode 100644 index 0000000..94afa3a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquick-config.h.FC73BE765461D209.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquickexports.h.4BD26FDCF9915DE1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquickexports.h.4BD26FDCF9915DE1.idx new file mode 100644 index 0000000..1d8fdfe Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquickexports.h.4BD26FDCF9915DE1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquickglobal.h.9DC5FAE12F8EA598.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquickglobal.h.9DC5FAE12F8EA598.idx new file mode 100644 index 0000000..f6dc13a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquickglobal.h.9DC5FAE12F8EA598.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquickwidgetsexports.h.91B6C7783D07E22C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquickwidgetsexports.h.91B6C7783D07E22C.idx new file mode 100644 index 0000000..fe1bce9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquickwidgetsexports.h.91B6C7783D07E22C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquickwidgetsglobal.h.D12C43E503312500.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquickwidgetsglobal.h.D12C43E503312500.idx new file mode 100644 index 0000000..5257487 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtquickwidgetsglobal.h.D12C43E503312500.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransform.h.B96D3145B0B9E3E4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransform.h.B96D3145B0B9E3E4.idx new file mode 100644 index 0000000..3c0f6d4 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransform.h.B96D3145B0B9E3E4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtranslator.h.EA99EAE963FF93B0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtranslator.h.EA99EAE963FF93B0.idx new file mode 100644 index 0000000..8add538 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtranslator.h.EA99EAE963FF93B0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransposeproxymodel.h.9352FFAD7240F12C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransposeproxymodel.h.9352FFAD7240F12C.idx new file mode 100644 index 0000000..f2791ef Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransposeproxymodel.h.9352FFAD7240F12C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.A9D2601CF0972617.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.A9D2601CF0972617.idx new file mode 100644 index 0000000..bdb81f6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.A9D2601CF0972617.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsan_impl.h.5A41057FF3F3DE59.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsan_impl.h.5A41057FF3F3DE59.idx new file mode 100644 index 0000000..1d01355 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsan_impl.h.5A41057FF3F3DE59.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsql-config.h.EF2AE76C88B9BF05.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsql-config.h.EF2AE76C88B9BF05.idx new file mode 100644 index 0000000..f436654 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsql-config.h.EF2AE76C88B9BF05.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsqlexports.h.0A67A1762BAC24D7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsqlexports.h.0A67A1762BAC24D7.idx new file mode 100644 index 0000000..33344d1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsqlexports.h.0A67A1762BAC24D7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsqlglobal.h.439933FCF908F3E4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsqlglobal.h.439933FCF908F3E4.idx new file mode 100644 index 0000000..033150c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsqlglobal.h.439933FCF908F3E4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsqlversion.h.C6C2111C87F2D185.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsqlversion.h.C6C2111C87F2D185.idx new file mode 100644 index 0000000..fb06b9a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsqlversion.h.C6C2111C87F2D185.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsymbolmacros.h.C5798CF7ACAF9E47.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsymbolmacros.h.C5798CF7ACAF9E47.idx new file mode 100644 index 0000000..0db589b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtsymbolmacros.h.C5798CF7ACAF9E47.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.F434E0D12B95C6BB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.F434E0D12B95C6BB.idx new file mode 100644 index 0000000..e0f6ce5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.F434E0D12B95C6BB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.6C57E28784C62F62.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.6C57E28784C62F62.idx new file mode 100644 index 0000000..ce8b4bf Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.6C57E28784C62F62.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.07DA5F207027E2F9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.07DA5F207027E2F9.idx new file mode 100644 index 0000000..8e41e57 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.07DA5F207027E2F9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.E3CC2F9F41771E51.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.E3CC2F9F41771E51.idx new file mode 100644 index 0000000..fc9fe80 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.E3CC2F9F41771E51.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.ACEA82CFFFDEBFC1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.ACEA82CFFFDEBFC1.idx new file mode 100644 index 0000000..e107128 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.ACEA82CFFFDEBFC1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.61F1F46594C088DE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.61F1F46594C088DE.idx new file mode 100644 index 0000000..5f9d704 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.61F1F46594C088DE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.6C725BE1FC0E8641.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.6C725BE1FC0E8641.idx new file mode 100644 index 0000000..1a95a00 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.6C725BE1FC0E8641.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.5BDAC8C137E0C6CE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.5BDAC8C137E0C6CE.idx new file mode 100644 index 0000000..638876d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.5BDAC8C137E0C6CE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtyperevision.h.FF95261A09DDDDFE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtyperevision.h.FF95261A09DDDDFE.idx new file mode 100644 index 0000000..ef44282 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtyperevision.h.FF95261A09DDDDFE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.0825D0F857F7AE86.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.0825D0F857F7AE86.idx new file mode 100644 index 0000000..4027a2a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.0825D0F857F7AE86.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quoted_string.h.38B339644C371897.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quoted_string.h.38B339644C371897.idx new file mode 100644 index 0000000..30f8e6a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quoted_string.h.38B339644C371897.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurl.h.C5D92C05CA235632.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurl.h.C5D92C05CA235632.idx new file mode 100644 index 0000000..76a2721 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurl.h.C5D92C05CA235632.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurlquery.h.E9255E1330CA65BD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurlquery.h.E9255E1330CA65BD.idx new file mode 100644 index 0000000..02d35fd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurlquery.h.E9255E1330CA65BD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.74A56EB8989AF674.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.74A56EB8989AF674.idx new file mode 100644 index 0000000..b75af8d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.74A56EB8989AF674.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quuid.h.9B0303DF208DC6F4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quuid.h.9B0303DF208DC6F4.idx new file mode 100644 index 0000000..a2645d7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quuid.h.9B0303DF208DC6F4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvalidator.h.1FC3CE59D6DB0344.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvalidator.h.1FC3CE59D6DB0344.idx new file mode 100644 index 0000000..591b824 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvalidator.h.1FC3CE59D6DB0344.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.E169E4FA3C46CD1E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.E169E4FA3C46CD1E.idx new file mode 100644 index 0000000..3e961a5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.E169E4FA3C46CD1E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariantanimation.h.973343039DA21DF9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariantanimation.h.973343039DA21DF9.idx new file mode 100644 index 0000000..eefed6b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariantanimation.h.973343039DA21DF9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarianthash.h.32D41393B6676A18.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarianthash.h.32D41393B6676A18.idx new file mode 100644 index 0000000..8543995 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarianthash.h.32D41393B6676A18.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariantlist.h.E70EE0E9D028EFF3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariantlist.h.E70EE0E9D028EFF3.idx new file mode 100644 index 0000000..701ec4d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariantlist.h.E70EE0E9D028EFF3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariantmap.h.3A41C6426F1F2F15.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariantmap.h.3A41C6426F1F2F15.idx new file mode 100644 index 0000000..8ce100f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariantmap.h.3A41C6426F1F2F15.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.10B4A1EC7B182546.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.10B4A1EC7B182546.idx new file mode 100644 index 0000000..1ace439 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.10B4A1EC7B182546.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector.h.3B62483D70089EAE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector.h.3B62483D70089EAE.idx new file mode 100644 index 0000000..610652c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector.h.3B62483D70089EAE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector2d.h.BB51EE7FADEA474C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector2d.h.BB51EE7FADEA474C.idx new file mode 100644 index 0000000..96d4272 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector2d.h.BB51EE7FADEA474C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector3d.h.8D13772BE096C7C7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector3d.h.8D13772BE096C7C7.idx new file mode 100644 index 0000000..b1d5e8c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector3d.h.8D13772BE096C7C7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector4d.h.5330E1155F0FF67C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector4d.h.5330E1155F0FF67C.idx new file mode 100644 index 0000000..6e64dda Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvector4d.h.5330E1155F0FF67C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvectornd.h.D7817BB723C00909.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvectornd.h.D7817BB723C00909.idx new file mode 100644 index 0000000..23400e1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvectornd.h.D7817BB723C00909.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversionnumber.h.27BBB00F83A1B8F0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversionnumber.h.27BBB00F83A1B8F0.idx new file mode 100644 index 0000000..3acfd10 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversionnumber.h.27BBB00F83A1B8F0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.0B89BBE5C5725EDB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.0B89BBE5C5725EDB.idx new file mode 100644 index 0000000..b7b6f95 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.0B89BBE5C5725EDB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvideowidget.h.9CFA3D763EAD6F41.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvideowidget.h.9CFA3D763EAD6F41.idx new file mode 100644 index 0000000..5875dac Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvideowidget.h.9CFA3D763EAD6F41.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwaitcondition.h.9B7B0DCD2B4DF64D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwaitcondition.h.9B7B0DCD2B4DF64D.idx new file mode 100644 index 0000000..0a1ab25 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwaitcondition.h.9B7B0DCD2B4DF64D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwidget.h.36B767CD92EF241B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwidget.h.36B767CD92EF241B.idx new file mode 100644 index 0000000..364aac2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwidget.h.36B767CD92EF241B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindow.h.6BA1ADEBB23C65EA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindow.h.6BA1ADEBB23C65EA.idx new file mode 100644 index 0000000..3cf0ced Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindow.h.6BA1ADEBB23C65EA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.5175443C5285AC9A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.5175443C5285AC9A.idx new file mode 100644 index 0000000..2ae6e00 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.5175443C5285AC9A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.8BCCC46E3A25D8BC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.8BCCC46E3A25D8BC.idx new file mode 100644 index 0000000..fe78661 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.8BCCC46E3A25D8BC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwineventnotifier.h.FAB77EDA5CEC2039.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwineventnotifier.h.FAB77EDA5CEC2039.idx new file mode 100644 index 0000000..81a0281 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwineventnotifier.h.FAB77EDA5CEC2039.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxmlstream.h.4ECDC4A26526907C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxmlstream.h.4ECDC4A26526907C.idx new file mode 100644 index 0000000..66ff405 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxmlstream.h.4ECDC4A26526907C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxpfunctional.h.0D76B8D7AFC23157.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxpfunctional.h.0D76B8D7AFC23157.idx new file mode 100644 index 0000000..f898e64 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxpfunctional.h.0D76B8D7AFC23157.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.E1CD6B20B6613A81.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.E1CD6B20B6613A81.idx new file mode 100644 index 0000000..10701e2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.E1CD6B20B6613A81.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.6E578C3F9FA7AA8E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.6E578C3F9FA7AA8E.idx new file mode 100644 index 0000000..2f2b773 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.6E578C3F9FA7AA8E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/random.5BE308AB28356B81.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/random.5BE308AB28356B81.idx new file mode 100644 index 0000000..d411753 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/random.5BE308AB28356B81.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/random.h.D36A91656DF932AC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/random.h.D36A91656DF932AC.idx new file mode 100644 index 0000000..b90c10c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/random.h.D36A91656DF932AC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/random.tcc.7971F1A29E908C96.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/random.tcc.7971F1A29E908C96.idx new file mode 100644 index 0000000..2e0187d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/random.tcc.7971F1A29E908C96.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.C7B1A9542D751A9F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.C7B1A9542D751A9F.idx new file mode 100644 index 0000000..29f7ad0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.C7B1A9542D751A9F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/raointintrin.h.9441219266236B68.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/raointintrin.h.9441219266236B68.idx new file mode 100644 index 0000000..ff413e9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/raointintrin.h.9441219266236B68.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.4A1C672EA1D47A29.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.4A1C672EA1D47A29.idx new file mode 100644 index 0000000..3b163f4 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.4A1C672EA1D47A29.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/rdseedintrin.h.3D830EE14BE1561C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/rdseedintrin.h.3D830EE14BE1561C.idx new file mode 100644 index 0000000..1168a4e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/rdseedintrin.h.3D830EE14BE1561C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.AE1090AF0BB2F5CE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.AE1090AF0BB2F5CE.idx new file mode 100644 index 0000000..aa1054e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.AE1090AF0BB2F5CE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.2447E42EE733B475.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.2447E42EE733B475.idx new file mode 100644 index 0000000..e98f967 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.2447E42EE733B475.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/rtmintrin.h.001CA770D464A371.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/rtmintrin.h.001CA770D464A371.idx new file mode 100644 index 0000000..5466505 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/rtmintrin.h.001CA770D464A371.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/serializeintrin.h.C20FB9B5EF6DFFF7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/serializeintrin.h.C20FB9B5EF6DFFF7.idx new file mode 100644 index 0000000..336f13c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/serializeintrin.h.C20FB9B5EF6DFFF7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sgxintrin.h.F404BBF7282C0E5F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sgxintrin.h.F404BBF7282C0E5F.idx new file mode 100644 index 0000000..8221239 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sgxintrin.h.F404BBF7282C0E5F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sha512intrin.h.F24A028C7076CD6C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sha512intrin.h.F24A028C7076CD6C.idx new file mode 100644 index 0000000..ca6d65d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sha512intrin.h.F24A028C7076CD6C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shaintrin.h.965B2CF158D32571.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shaintrin.h.965B2CF158D32571.idx new file mode 100644 index 0000000..724e536 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shaintrin.h.965B2CF158D32571.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_mutex.9BAAB6B5780B1DBD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_mutex.9BAAB6B5780B1DBD.idx new file mode 100644 index 0000000..59d16f8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_mutex.9BAAB6B5780B1DBD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.51AFD08D2E9E117F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.51AFD08D2E9E117F.idx new file mode 100644 index 0000000..96070f5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.51AFD08D2E9E117F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.5216377C2437A8D7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.5216377C2437A8D7.idx new file mode 100644 index 0000000..25e035f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.5216377C2437A8D7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.23837B82F781F6B1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.23837B82F781F6B1.idx new file mode 100644 index 0000000..4efd38c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.23837B82F781F6B1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/signal.h.C5A1CA2DFE0DB753.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/signal.h.C5A1CA2DFE0DB753.idx new file mode 100644 index 0000000..c9464cb Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/signal.h.C5A1CA2DFE0DB753.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sm3intrin.h.66361755C363A950.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sm3intrin.h.66361755C363A950.idx new file mode 100644 index 0000000..4e97272 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sm3intrin.h.66361755C363A950.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sm4intrin.h.84CFCB6D08981C2D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sm4intrin.h.84CFCB6D08981C2D.idx new file mode 100644 index 0000000..583a6a8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sm4intrin.h.84CFCB6D08981C2D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/smmintrin.h.74C7A2B1511E8775.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/smmintrin.h.74C7A2B1511E8775.idx new file mode 100644 index 0000000..2804a4e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/smmintrin.h.74C7A2B1511E8775.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/source_location.72CBFC1F5E9E60F1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/source_location.72CBFC1F5E9E60F1.idx new file mode 100644 index 0000000..99770ac Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/source_location.72CBFC1F5E9E60F1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.576DC0DEB4F0EA35.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.576DC0DEB4F0EA35.idx new file mode 100644 index 0000000..d713c27 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.576DC0DEB4F0EA35.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.C44BFEA16E13E94F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.C44BFEA16E13E94F.idx new file mode 100644 index 0000000..0780333 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.C44BFEA16E13E94F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sstream.F602052197EEBD1F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sstream.F602052197EEBD1F.idx new file mode 100644 index 0000000..3bc2a32 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sstream.F602052197EEBD1F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sstream.tcc.05A0344717F244F8.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sstream.tcc.05A0344717F244F8.idx new file mode 100644 index 0000000..c985bb3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sstream.tcc.05A0344717F244F8.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.F9D410BA0297459B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.F9D410BA0297459B.idx new file mode 100644 index 0000000..580e0a0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.F9D410BA0297459B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.7C8D399DADA789DD.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.7C8D399DADA789DD.idx new file mode 100644 index 0000000..bc2a9e2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.7C8D399DADA789DD.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_mutex.h.7FC41899DC36399F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_mutex.h.7FC41899DC36399F.idx new file mode 100644 index 0000000..6340f12 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_mutex.h.7FC41899DC36399F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_thread.h.60AAD7E61520A843.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_thread.h.60AAD7E61520A843.idx new file mode 100644 index 0000000..91ca7ce Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_thread.h.60AAD7E61520A843.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.C85BF9DE8F0D1968.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.C85BF9DE8F0D1968.idx new file mode 100644 index 0000000..5eba17f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.C85BF9DE8F0D1968.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.2E84043DF322FD37.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.2E84043DF322FD37.idx new file mode 100644 index 0000000..9774568 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.2E84043DF322FD37.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.6A52526131A673E0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.6A52526131A673E0.idx new file mode 100644 index 0000000..8573f9c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.6A52526131A673E0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.A589A569543296D1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.A589A569543296D1.idx new file mode 100644 index 0000000..244a4d1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.A589A569543296D1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.0606EB303FC528D2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.0606EB303FC528D2.idx new file mode 100644 index 0000000..8ef3c66 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.0606EB303FC528D2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.5D562163A9854CED.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.5D562163A9854CED.idx new file mode 100644 index 0000000..eec2a6a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.5D562163A9854CED.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.939565475AF1303D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.939565475AF1303D.idx new file mode 100644 index 0000000..c73ce5b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.939565475AF1303D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_s.h.97F9864C365C8933.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_s.h.97F9864C365C8933.idx new file mode 100644 index 0000000..6e979ba Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_s.h.97F9864C365C8933.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.729020C2091A539C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.729020C2091A539C.idx new file mode 100644 index 0000000..db6f9c6 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.729020C2091A539C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.87D349AA13FA6D1F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.87D349AA13FA6D1F.idx new file mode 100644 index 0000000..072957d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.87D349AA13FA6D1F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib_s.h.9E79E71070078A8A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib_s.h.9E79E71070078A8A.idx new file mode 100644 index 0000000..2bc2f97 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib_s.h.9E79E71070078A8A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.8DEB79B9F8F9B858.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.8DEB79B9F8F9B858.idx new file mode 100644 index 0000000..09c66dc Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.8DEB79B9F8F9B858.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.AB597E6DAC4746DB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.AB597E6DAC4746DB.idx new file mode 100644 index 0000000..204bf81 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.AB597E6DAC4746DB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.EBC5F94348843951.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.EBC5F94348843951.idx new file mode 100644 index 0000000..0c1c258 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.EBC5F94348843951.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.C707FAEC945C60F3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.C707FAEC945C60F3.idx new file mode 100644 index 0000000..8d2259f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.C707FAEC945C60F3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.63F20F23DD36FD2D.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.63F20F23DD36FD2D.idx new file mode 100644 index 0000000..6e55cfb Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.63F20F23DD36FD2D.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.1C8BA515B31DE5D5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.1C8BA515B31DE5D5.idx new file mode 100644 index 0000000..01afe04 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.1C8BA515B31DE5D5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.50A21125E07EFF45.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.50A21125E07EFF45.idx new file mode 100644 index 0000000..320c8cd Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.50A21125E07EFF45.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.A4C7CEFA65446CEE.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.A4C7CEFA65446CEE.idx new file mode 100644 index 0000000..9ad1314 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.A4C7CEFA65446CEE.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.024FFDA0E6C936E9.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.024FFDA0E6C936E9.idx new file mode 100644 index 0000000..87ba2bb Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.024FFDA0E6C936E9.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.96226B8B74F3FDA4.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.96226B8B74F3FDA4.idx new file mode 100644 index 0000000..90297ca Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.96226B8B74F3FDA4.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.FDE5DDE4C420C71B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.FDE5DDE4C420C71B.idx new file mode 100644 index 0000000..a78883e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.FDE5DDE4C420C71B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.5E2792959D5E2D1A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.5E2792959D5E2D1A.idx new file mode 100644 index 0000000..1b67a1a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.5E2792959D5E2D1A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.09093604313E2CA3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.09093604313E2CA3.idx new file mode 100644 index 0000000..d068a95 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.09093604313E2CA3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.1B2F3D80D1DB1393.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.1B2F3D80D1DB1393.idx new file mode 100644 index 0000000..36a5f0c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.1B2F3D80D1DB1393.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.6C1EC4465C9C4E29.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.6C1EC4465C9C4E29.idx new file mode 100644 index 0000000..3948de5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.6C1EC4465C9C4E29.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.42F9270035479D63.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.42F9270035479D63.idx new file mode 100644 index 0000000..d79b24a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.42F9270035479D63.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.05A54483420546E2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.05A54483420546E2.idx new file mode 100644 index 0000000..d6e5f6e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.05A54483420546E2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.81C26C86BF0FFE88.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.81C26C86BF0FFE88.idx new file mode 100644 index 0000000..6438291 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.81C26C86BF0FFE88.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.62783231B77C144C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.62783231B77C144C.idx new file mode 100644 index 0000000..fb05a0c Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.62783231B77C144C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.1BED37D0B419C19A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.1BED37D0B419C19A.idx new file mode 100644 index 0000000..7bf3551 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.1BED37D0B419C19A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.106B3C515E15F85B.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.106B3C515E15F85B.idx new file mode 100644 index 0000000..5b7140b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.106B3C515E15F85B.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.6EE5DE1439C339E3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.6EE5DE1439C339E3.idx new file mode 100644 index 0000000..4d6cda5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.6EE5DE1439C339E3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.E839D9F2C3ABA7B8.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.E839D9F2C3ABA7B8.idx new file mode 100644 index 0000000..5f6c780 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.E839D9F2C3ABA7B8.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.6274312B6495C385.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.6274312B6495C385.idx new file mode 100644 index 0000000..a76dc61 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.6274312B6495C385.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.B5643A942659F76A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.B5643A942659F76A.idx new file mode 100644 index 0000000..fe85014 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.B5643A942659F76A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.91295F3852676AF7.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.91295F3852676AF7.idx new file mode 100644 index 0000000..2b53472 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.91295F3852676AF7.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.4241EF8E1B1F66C1.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.4241EF8E1B1F66C1.idx new file mode 100644 index 0000000..b3ab553 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.4241EF8E1B1F66C1.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_s.h.7D23593427728DF5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_s.h.7D23593427728DF5.idx new file mode 100644 index 0000000..ff2fce2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_s.h.7D23593427728DF5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.687044F8B23BF6B0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.687044F8B23BF6B0.idx new file mode 100644 index 0000000..ec74c1a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.687044F8B23BF6B0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.6938580E140597E6.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.6938580E140597E6.idx new file mode 100644 index 0000000..4e88597 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.6938580E140597E6.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.932A7E92A52A4C98.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.932A7E92A52A4C98.idx new file mode 100644 index 0000000..16a19e1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.932A7E92A52A4C98.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/swprintf.inl.C1E8FC6A0A5D14E8.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/swprintf.inl.C1E8FC6A0A5D14E8.idx new file mode 100644 index 0000000..68c6b44 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/swprintf.inl.C1E8FC6A0A5D14E8.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.C6DAD1D70E350833.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.C6DAD1D70E350833.idx new file mode 100644 index 0000000..090166d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.C6DAD1D70E350833.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.C7F9A31034C16E17.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.C7F9A31034C16E17.idx new file mode 100644 index 0000000..59cee4e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.C7F9A31034C16E17.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time_members.h.669C20E49B588F2A.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time_members.h.669C20E49B588F2A.idx new file mode 100644 index 0000000..3e97120 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time_members.h.669C20E49B588F2A.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb.h.12A74F16611A7932.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb.h.12A74F16611A7932.idx new file mode 100644 index 0000000..6c4edba Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb.h.12A74F16611A7932.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb_s.h.7C0E70C7BB5C712C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb_s.h.7C0E70C7BB5C712C.idx new file mode 100644 index 0000000..29534fb Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb_s.h.7C0E70C7BB5C712C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tmmintrin.h.0B06BEE5E568E088.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tmmintrin.h.0B06BEE5E568E088.idx new file mode 100644 index 0000000..0b6e649 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tmmintrin.h.0B06BEE5E568E088.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tsxldtrkintrin.h.4C6C3A3A0308CCDC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tsxldtrkintrin.h.4C6C3A3A0308CCDC.idx new file mode 100644 index 0000000..1d3dc56 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tsxldtrkintrin.h.4C6C3A3A0308CCDC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.5AD1D9FEE6742871.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.5AD1D9FEE6742871.idx new file mode 100644 index 0000000..1bc6328 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.5AD1D9FEE6742871.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.25F355BAEDFD44E5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.25F355BAEDFD44E5.idx new file mode 100644 index 0000000..2472672 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.25F355BAEDFD44E5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.46F3949FFD0E0288.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.46F3949FFD0E0288.idx new file mode 100644 index 0000000..8460160 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.46F3949FFD0E0288.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.0887B9902066FF85.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.0887B9902066FF85.idx new file mode 100644 index 0000000..2f82f66 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.0887B9902066FF85.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.5ABC0612624050A0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.5ABC0612624050A0.idx new file mode 100644 index 0000000..e5d54d2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.5ABC0612624050A0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_CommunicationUI.h.9ED93211BBBC8853.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_CommunicationUI.h.9ED93211BBBC8853.idx new file mode 100644 index 0000000..07bf650 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_CommunicationUI.h.9ED93211BBBC8853.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_DogControlUI.h.7D41B6EA1B81B2F0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_DogControlUI.h.7D41B6EA1B81B2F0.idx new file mode 100644 index 0000000..f7bbed7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_DogControlUI.h.7D41B6EA1B81B2F0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_GuidingUI.h.F8F44802829745E3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_GuidingUI.h.F8F44802829745E3.idx new file mode 100644 index 0000000..26321bc Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_GuidingUI.h.F8F44802829745E3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_InjuryAnalysisUI.h.A7CB31FC74C9A1C0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_InjuryAnalysisUI.h.A7CB31FC74C9A1C0.idx new file mode 100644 index 0000000..47d0781 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_InjuryAnalysisUI.h.A7CB31FC74C9A1C0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_InjuryDisplayUI.h.001861A4ABC7C949.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_InjuryDisplayUI.h.001861A4ABC7C949.idx new file mode 100644 index 0000000..47518c1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_InjuryDisplayUI.h.001861A4ABC7C949.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_UAVControlUI.h.0A2BE5DF6070D5C5.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_UAVControlUI.h.0A2BE5DF6070D5C5.idx new file mode 100644 index 0000000..0d4ef5e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_UAVControlUI.h.0A2BE5DF6070D5C5.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_widget.h.E0C0A7F3C2955603.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_widget.h.E0C0A7F3C2955603.idx new file mode 100644 index 0000000..b15420a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ui_widget.h.E0C0A7F3C2955603.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uintrintrin.h.77EEE5E2B0C04B80.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uintrintrin.h.77EEE5E2B0C04B80.idx new file mode 100644 index 0000000..3ed285a Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uintrintrin.h.77EEE5E2B0C04B80.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.1BEDB942311E7744.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.1BEDB942311E7744.idx new file mode 100644 index 0000000..121cd03 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.1BEDB942311E7744.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_lock.h.B762CB5F95A140C2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_lock.h.B762CB5F95A140C2.idx new file mode 100644 index 0000000..2d75b76 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_lock.h.B762CB5F95A140C2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.6DED9F3142FF1139.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.6DED9F3142FF1139.idx new file mode 100644 index 0000000..25af89e Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.6DED9F3142FF1139.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.126FD2AC143E3C3C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.126FD2AC143E3C3C.idx new file mode 100644 index 0000000..ff27b94 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.126FD2AC143E3C3C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.36A0F238E14D74AC.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.36A0F238E14D74AC.idx new file mode 100644 index 0000000..c93d1a0 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.36A0F238E14D74AC.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.18228ABC57D06E93.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.18228ABC57D06E93.idx new file mode 100644 index 0000000..bb1890f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.18228ABC57D06E93.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator_args.h.36A5012C11A5A33C.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator_args.h.36A5012C11A5A33C.idx new file mode 100644 index 0000000..b6005eb Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator_args.h.36A5012C11A5A33C.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.DED79304ED61CEC0.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.DED79304ED61CEC0.idx new file mode 100644 index 0000000..2c3eec4 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.DED79304ED61CEC0.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.712F7FAF0767999E.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.712F7FAF0767999E.idx new file mode 100644 index 0000000..25e9f11 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.712F7FAF0767999E.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.D16A921BBB177B22.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.D16A921BBB177B22.idx new file mode 100644 index 0000000..3b79f67 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.D16A921BBB177B22.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vaesintrin.h.A1DCBA361D0C3EB6.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vaesintrin.h.A1DCBA361D0C3EB6.idx new file mode 100644 index 0000000..3cf8062 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vaesintrin.h.A1DCBA361D0C3EB6.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/variant.AC29A3E7DADB5570.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/variant.AC29A3E7DADB5570.idx new file mode 100644 index 0000000..d6ffb80 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/variant.AC29A3E7DADB5570.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.9B7F95B6CD1393D2.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.9B7F95B6CD1393D2.idx new file mode 100644 index 0000000..5e4a058 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.9B7F95B6CD1393D2.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.8517AD2A2E982F4F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.8517AD2A2E982F4F.idx new file mode 100644 index 0000000..a2ed718 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.8517AD2A2E982F4F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/version.A2F3CF3194C989FF.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/version.A2F3CF3194C989FF.idx new file mode 100644 index 0000000..f650001 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/version.A2F3CF3194C989FF.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vpclmulqdqintrin.h.D08D75491301BD94.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vpclmulqdqintrin.h.D08D75491301BD94.idx new file mode 100644 index 0000000..d2e6fa3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vpclmulqdqintrin.h.D08D75491301BD94.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/waitpkgintrin.h.1A3856C20F193637.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/waitpkgintrin.h.1A3856C20F193637.idx new file mode 100644 index 0000000..a433ed8 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/waitpkgintrin.h.1A3856C20F193637.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wbnoinvdintrin.h.BECBD04E4C954F85.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wbnoinvdintrin.h.BECBD04E4C954F85.idx new file mode 100644 index 0000000..231f0e7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wbnoinvdintrin.h.BECBD04E4C954F85.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.7DA29A93B7213F00.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.7DA29A93B7213F00.idx new file mode 100644 index 0000000..1d28196 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.7DA29A93B7213F00.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar_s.h.A827553DDF9D2D3F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar_s.h.A827553DDF9D2D3F.idx new file mode 100644 index 0000000..dd13b96 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar_s.h.A827553DDF9D2D3F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wctype.h.A9594066E7445FCA.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wctype.h.A9594066E7445FCA.idx new file mode 100644 index 0000000..2898d45 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wctype.h.A9594066E7445FCA.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/widget.cpp.1C547A610215E016.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/widget.cpp.1C547A610215E016.idx new file mode 100644 index 0000000..820d3a2 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/widget.cpp.1C547A610215E016.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/widget.h.B0B65428A5075596.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/widget.h.B0B65428A5075596.idx new file mode 100644 index 0000000..dd3984d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/widget.h.B0B65428A5075596.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wmmintrin.h.D978C0FE12CB8601.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wmmintrin.h.D978C0FE12CB8601.idx new file mode 100644 index 0000000..251f7e9 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wmmintrin.h.D978C0FE12CB8601.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/x86gprintrin.h.9BBE7B42F5AD3B75.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/x86gprintrin.h.9BBE7B42F5AD3B75.idx new file mode 100644 index 0000000..6f74fda Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/x86gprintrin.h.9BBE7B42F5AD3B75.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xmmintrin.h.B68C0627D17CF885.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xmmintrin.h.B68C0627D17CF885.idx new file mode 100644 index 0000000..a66fa63 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xmmintrin.h.B68C0627D17CF885.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xsavecintrin.h.1DC0CD990A0CF3A3.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xsavecintrin.h.1DC0CD990A0CF3A3.idx new file mode 100644 index 0000000..2d160af Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xsavecintrin.h.1DC0CD990A0CF3A3.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xsaveintrin.h.E861BECB2303819F.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xsaveintrin.h.E861BECB2303819F.idx new file mode 100644 index 0000000..504690d Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xsaveintrin.h.E861BECB2303819F.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xsaveoptintrin.h.454907B5C1FDE5CB.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xsaveoptintrin.h.454907B5C1FDE5CB.idx new file mode 100644 index 0000000..1bfd493 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xsaveoptintrin.h.454907B5C1FDE5CB.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xsavesintrin.h.05A52A1073750949.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xsavesintrin.h.05A52A1073750949.idx new file mode 100644 index 0000000..f99cdc3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xsavesintrin.h.05A52A1073750949.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xtestintrin.h.8586A3AFBE5DE152.idx b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xtestintrin.h.8586A3AFBE5DE152.idx new file mode 100644 index 0000000..5ae52f5 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/xtestintrin.h.8586A3AFBE5DE152.idx differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/compile_commands.json b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/compile_commands.json new file mode 100644 index 0000000..e691a20 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd/compile_commands.json @@ -0,0 +1 @@ +[{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","D:\\QTpath\\fly_land\\CommunicationUI.cpp"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/CommunicationUI.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","D:\\QTpath\\fly_land\\DogControlUI.cpp"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/DogControlUI.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","D:\\QTpath\\fly_land\\GuidingUI.cpp"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/GuidingUI.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","D:\\QTpath\\fly_land\\InjuryAnalysisUI.cpp"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/InjuryAnalysisUI.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","D:\\QTpath\\fly_land\\InjuryDatabase.cpp"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/InjuryDatabase.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","D:\\QTpath\\fly_land\\InjuryDisplayUI.cpp"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/InjuryDisplayUI.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","D:\\QTpath\\fly_land\\UAVControlUI.cpp"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/UAVControlUI.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++","D:\\QTpath\\fly_land\\main.cpp"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/main.cpp"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\CommunicationUI.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/CommunicationUI.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\DogControlUI.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/DogControlUI.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\GuidingUI.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/GuidingUI.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\InjuryAnalysisUI.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/InjuryAnalysisUI.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\InjuryDatabase.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/InjuryDatabase.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\InjuryDisplayUI.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/InjuryDisplayUI.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\UAVControlUI.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/UAVControlUI.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\ui_UAVControlUI.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_UAVControlUI.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\ui_InjuryDisplayUI.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_InjuryDisplayUI.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\ui_GuidingUI.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_GuidingUI.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\ui_InjuryAnalysisUI.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_InjuryAnalysisUI.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\ui_CommunicationUI.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_CommunicationUI.h"},{"arguments":["clang","-Wno-documentation-unknown-command","-Wno-unknown-warning-option","-Wno-unknown-pragmas","-nostdinc","-nostdinc++","-g","-std=gnu++1z","-Wall","-Wextra","-Wextra","-fexceptions","-mthreads","-fsyntax-only","-m64","--target=x86_64-w64-mingw32","-DUNICODE","-D_UNICODE","-DWIN32","-DMINGW_HAS_SECURE_API","-DQT_QML_DEBUG","-DQT_QUICKWIDGETS_LIB","-DQT_LOCATION_LIB","-DQT_POSITIONINGQUICK_LIB","-DQT_QUICKSHAPES_LIB","-DQT_QUICK_LIB","-DQT_OPENGL_LIB","-DQT_MULTIMEDIAWIDGETS_LIB","-DQT_WIDGETS_LIB","-DQT_MULTIMEDIA_LIB","-DQT_GUI_LIB","-DQT_QMLMODELS_LIB","-DQT_QML_LIB","-DQT_QMLINTEGRATION_LIB","-DQT_NETWORK_LIB","-DQT_POSITIONING_LIB","-DQT_SQL_LIB","-DQT_CORE_LIB","-DQT_QMLBUILTINS_LIB","-DQT_NEEDS_QMAIN","-DQ_CREATOR_RUN","-DQT_ANNOTATE_FUNCTION(x)=__attribute__((annotate(#x)))","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedMingwHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders","-ID:\\Qt\\Tools\\QtCreator\\share\\qtcreator\\cplusplus\\wrappedQtHeaders\\QtCore","-ID:\\QTpath\\fly_land","-ID:\\Qt\\6.7.0\\mingw_64\\include","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtLocation","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioningQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuickShapes\\6.7.0\\QtQuickShapes","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick\\6.7.0\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQuick","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtOpenGL","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimediaWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtWidgets","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui\\6.7.0\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtMultimedia","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtGui","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels\\6.7.0\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlModels","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml\\6.7.0\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQml","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlIntegration","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtNetwork","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtPositioning","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore\\6.7.0\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtSql","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtCore","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins\\6.7.0\\QtQmlBuiltins","-ID:\\Qt\\6.7.0\\mingw_64\\include\\QtQmlBuiltins","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\debug","-ID:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug","-ID:\\Qt\\6.7.0\\mingw_64\\mkspecs\\win32-g++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\x86_64-w64-mingw32","-isystem","D:\\Qt\\Tools\\mingw1120_64\\lib\\gcc\\x86_64-w64-mingw32\\11.2.0\\include\\c++\\backward","-isystem","D:\\Qt\\Tools\\QtCreator\\bin\\clang\\lib\\clang\\17\\include","-isystem","D:\\Qt\\Tools\\mingw1120_64\\x86_64-w64-mingw32\\include","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fretain-comments-from-system-headers","-fmacro-backtrace-limit=0","-ferror-limit=1000","-x","c++-header","D:\\QTpath\\fly_land\\build\\Desktop_Qt_6_7_0_MinGW_64_bit-Debug\\ui_DogControlUI.h"],"directory":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/.qtc_clangd","file":"D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_DogControlUI.h"}] \ No newline at end of file diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/Makefile b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/Makefile new file mode 100644 index 0000000..88445a8 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/Makefile @@ -0,0 +1,820 @@ +############################################################################# +# Makefile for building: fly_land +# Generated by qmake (3.1) (Qt 6.7.0) +# Project: ..\..\fly_land.pro +# Template: app +# Command: D:\Qt\6.7.0\mingw_64\bin\qmake.exe -o Makefile ..\..\fly_land.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" +############################################################################# + +MAKEFILE = Makefile + +EQ = = + +first: debug +install: debug-install +uninstall: debug-uninstall +QMAKE = D:\Qt\6.7.0\mingw_64\bin\qmake.exe +DEL_FILE = del +CHK_DIR_EXISTS= if not exist +MKDIR = mkdir +COPY = copy /y +COPY_FILE = copy /y +COPY_DIR = xcopy /s /q /y /i +INSTALL_FILE = copy /y +INSTALL_PROGRAM = copy /y +INSTALL_DIR = xcopy /s /q /y /i +QINSTALL = D:\Qt\6.7.0\mingw_64\bin\qmake.exe -install qinstall +QINSTALL_PROGRAM = D:\Qt\6.7.0\mingw_64\bin\qmake.exe -install qinstall -exe +DEL_FILE = del +SYMLINK = $(QMAKE) -install ln -f -s +DEL_DIR = rmdir +MOVE = move +IDC = idc +IDL = midl +ZIP = zip -r -9 +DEF_FILE = +RES_FILE = +SED = $(QMAKE) -install sed +MOVE = move +SUBTARGETS = \ + debug \ + release + + +debug: FORCE + $(MAKE) -f $(MAKEFILE).Debug +debug-make_first: FORCE + $(MAKE) -f $(MAKEFILE).Debug +debug-all: FORCE + $(MAKE) -f $(MAKEFILE).Debug all +debug-clean: FORCE + $(MAKE) -f $(MAKEFILE).Debug clean +debug-distclean: FORCE + $(MAKE) -f $(MAKEFILE).Debug distclean +debug-install: FORCE + $(MAKE) -f $(MAKEFILE).Debug install +debug-uninstall: FORCE + $(MAKE) -f $(MAKEFILE).Debug uninstall +release: FORCE + $(MAKE) -f $(MAKEFILE).Release +release-make_first: FORCE + $(MAKE) -f $(MAKEFILE).Release +release-all: FORCE + $(MAKE) -f $(MAKEFILE).Release all +release-clean: FORCE + $(MAKE) -f $(MAKEFILE).Release clean +release-distclean: FORCE + $(MAKE) -f $(MAKEFILE).Release distclean +release-install: FORCE + $(MAKE) -f $(MAKEFILE).Release install +release-uninstall: FORCE + $(MAKE) -f $(MAKEFILE).Release uninstall + +Makefile: ../../fly_land.pro ../../../../Qt/6.7.0/mingw_64/mkspecs/win32-g++/qmake.conf ../../../../Qt/6.7.0/mingw_64/mkspecs/features/spec_pre.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/device_config.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/common/sanitize.conf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/common/gcc-base.conf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/common/g++-base.conf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/win32/windows_vulkan_sdk.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/common/windows-vulkan.conf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/common/g++-win32.conf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/common/windows-desktop.conf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/qconfig.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_ext_freetype.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_ext_libjpeg.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_ext_libpng.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3danimation.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3danimation_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dcore.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dcore_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dextras.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dextras_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dinput.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dinput_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dlogic.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dlogic_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquick.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquick_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickanimation.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickextras.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickextras_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickinput.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickinput_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickrender.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickrender_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickscene2d.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3drender.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3drender_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_activeqt.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_activeqt_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_axbase_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_axcontainer.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_axcontainer_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_axserver.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_axserver_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_bluetooth.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_bluetooth_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_bodymovin_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_charts.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_charts_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_chartsqml.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_chartsqml_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_concurrent.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_concurrent_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_core.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_core_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_datavisualization.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_datavisualization_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_datavisualizationqml.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_datavisualizationqml_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_dbus.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_dbus_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_designer.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_designer_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_designercomponents_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_entrypoint_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_example_icons_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_fb_support_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_freetype_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_graphs.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_graphs_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_grpc.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_grpc_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_grpcquick.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_grpcquick_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_gui.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_gui_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_harfbuzz_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_help.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_help_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_httpserver.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_httpserver_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_insighttracker.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_insighttracker_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_insighttrackerqml.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_insighttrackerqml_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_jpeg_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_jsonrpc_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labsanimation.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labsanimation_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labsfolderlistmodel.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labsfolderlistmodel_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labsqmlmodels.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labsqmlmodels_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labssettings.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labssettings_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labssharedimage.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labssharedimage_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labswavefrontmesh.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labswavefrontmesh_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_languageserver_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_linguist.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_location.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_location_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_multimedia.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_multimedia_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_multimediaquick_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_multimediawidgets.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_network.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_network_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_networkauth.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_networkauth_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_nfc.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_nfc_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_opengl.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_opengl_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_openglwidgets.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_openglwidgets_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_packetprotocol_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_pdf.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_pdf_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_pdfquick.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_pdfquick_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_pdfwidgets.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_pdfwidgets_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_png_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_positioning.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_positioning_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_positioningquick.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_positioningquick_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_printsupport.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_printsupport_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobuf.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobuf_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobufqtcoretypes.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobufqtcoretypes_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobufqtguitypes.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobufqtguitypes_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobufwellknowntypes.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobufwellknowntypes_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qdoccatch_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qdoccatchconversions_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qdoccatchgenerators_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qml.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qml_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlbuiltins.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlbuiltins_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlcompiler.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlcompiler_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlcore.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlcore_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmldebug_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmldom_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlintegration.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlintegration_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmllocalstorage.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmllocalstorage_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlls_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlmodels.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlmodels_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlnetwork.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlnetwork_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmltest.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmltest_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmltoolingsettings_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmltyperegistrar_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlworkerscript.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlworkerscript_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlxmllistmodel.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlxmllistmodel_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3d.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3d_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dassetimport.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dassetimport_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dassetutils.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dassetutils_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3deffects.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3deffects_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dglslparser_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dhelpers.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dhelpers_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dhelpersimpl.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dhelpersimpl_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3diblbaker.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3diblbaker_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dparticleeffects.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dparticleeffects_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dparticles.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dparticles_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dphysics.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dphysics_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dphysicshelpers.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dphysicshelpers_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3druntimerender.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3druntimerender_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dspatialaudio_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dutils.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dutils_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2basic.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2basic_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2basicstyleimpl.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2basicstyleimpl_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2fusion.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2fusion_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2fusionstyleimpl.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2fusionstyleimpl_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2imagine.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2imagine_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2imaginestyleimpl.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2imaginestyleimpl_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2impl.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2impl_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2material.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2material_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2materialstyleimpl.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2materialstyleimpl_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2universal.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2universal_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2universalstyleimpl.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2universalstyleimpl_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2windowsstyleimpl.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2windowsstyleimpl_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrolstestutilsprivate_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickdialogs2.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickdialogs2_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickdialogs2quickimpl.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickdialogs2quickimpl_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickdialogs2utils.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickdialogs2utils_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickeffects_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicklayouts.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicklayouts_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickparticles_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickshapes_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktemplates2.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktestutilsprivate_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktimeline.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktimeline_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktimelineblendtrees.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktimelineblendtrees_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickwidgets.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickwidgets_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_remoteobjects.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_remoteobjects_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_remoteobjectsqml.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_remoteobjectsqml_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_repparser.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_repparser_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_scxml.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_scxml_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_scxmlqml.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_scxmlqml_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_sensors.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_sensors_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_sensorsquick.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_sensorsquick_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_serialbus.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_serialbus_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_serialport.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_serialport_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_shadertools.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_shadertools_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_spatialaudio.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_spatialaudio_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_sql.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_sql_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_statemachine.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_statemachine_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_statemachineqml.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_statemachineqml_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_svg.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_svg_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_svgwidgets.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_svgwidgets_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_testlib.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_testlib_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_texttospeech.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_texttospeech_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_tools_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_uiplugin.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_uitools.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_uitools_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_virtualkeyboard.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_virtualkeyboard_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_virtualkeyboardsettings.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_virtualkeyboardsettings_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webchannel.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webchannel_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webchannelquick.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webchannelquick_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_websockets.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_websockets_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webview.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webview_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webviewquick.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webviewquick_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_widgets.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_widgets_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_xml.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_xml_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_zlib_private.pri \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/qt_functions.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/qt_config.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/win32-g++/qmake.conf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/spec_post.prf \ + .qmake.stash \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/exclusive_builds.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/toolchain.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/default_pre.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/win32/default_pre.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/resolve_config.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/exclusive_builds_post.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/default_post.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/qml_debug.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/precompile_header.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/warn_on.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/permissions.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/qt.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/resources_functions.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/resources.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/moc.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/win32/opengl.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/uic.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/qmake_use.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/file_copies.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/win32/windows.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/testcase_targets.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/exceptions.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/yacc.prf \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/lex.prf \ + ../../fly_land.pro \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6QuickWidgets.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6Location.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6PositioningQuick.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6QuickShapes.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6Quick.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6OpenGL.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6MultimediaWidgets.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6Widgets.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6Multimedia.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6Gui.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6QmlModels.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6Qml.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6Network.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6Positioning.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6Sql.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6Core.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6QmlBuiltins.prl \ + ../../../../Qt/6.7.0/mingw_64/lib/Qt6EntryPoint.prl \ + ../../../../Qt/6.7.0/mingw_64/mkspecs/features/build_pass.prf \ + ../../Resource.qrc + $(QMAKE) -o Makefile ..\..\fly_land.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" +../../../../Qt/6.7.0/mingw_64/mkspecs/features/spec_pre.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/device_config.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/common/sanitize.conf: +../../../../Qt/6.7.0/mingw_64/mkspecs/common/gcc-base.conf: +../../../../Qt/6.7.0/mingw_64/mkspecs/common/g++-base.conf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/win32/windows_vulkan_sdk.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/common/windows-vulkan.conf: +../../../../Qt/6.7.0/mingw_64/mkspecs/common/g++-win32.conf: +../../../../Qt/6.7.0/mingw_64/mkspecs/common/windows-desktop.conf: +../../../../Qt/6.7.0/mingw_64/mkspecs/qconfig.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_ext_freetype.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_ext_libjpeg.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_ext_libpng.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3danimation.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3danimation_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dcore.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dcore_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dextras.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dextras_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dinput.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dinput_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dlogic.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dlogic_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquick.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquick_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickanimation.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickextras.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickextras_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickinput.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickinput_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickrender.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickrender_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickscene2d.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3drender.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_3drender_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_activeqt.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_activeqt_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_axbase_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_axcontainer.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_axcontainer_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_axserver.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_axserver_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_bluetooth.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_bluetooth_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_bodymovin_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_charts.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_charts_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_chartsqml.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_chartsqml_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_concurrent.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_concurrent_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_core.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_core_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_datavisualization.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_datavisualization_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_datavisualizationqml.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_datavisualizationqml_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_dbus.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_dbus_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_designer.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_designer_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_designercomponents_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_entrypoint_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_example_icons_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_fb_support_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_freetype_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_graphs.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_graphs_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_grpc.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_grpc_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_grpcquick.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_grpcquick_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_gui.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_gui_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_harfbuzz_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_help.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_help_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_httpserver.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_httpserver_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_insighttracker.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_insighttracker_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_insighttrackerqml.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_insighttrackerqml_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_jpeg_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_jsonrpc_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labsanimation.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labsanimation_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labsfolderlistmodel.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labsfolderlistmodel_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labsqmlmodels.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labsqmlmodels_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labssettings.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labssettings_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labssharedimage.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labssharedimage_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labswavefrontmesh.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_labswavefrontmesh_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_languageserver_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_linguist.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_location.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_location_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_multimedia.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_multimedia_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_multimediaquick_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_multimediawidgets.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_network.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_network_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_networkauth.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_networkauth_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_nfc.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_nfc_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_opengl.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_opengl_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_openglwidgets.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_openglwidgets_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_packetprotocol_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_pdf.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_pdf_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_pdfquick.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_pdfquick_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_pdfwidgets.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_pdfwidgets_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_png_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_positioning.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_positioning_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_positioningquick.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_positioningquick_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_printsupport.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_printsupport_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobuf.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobuf_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobufqtcoretypes.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobufqtcoretypes_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobufqtguitypes.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobufqtguitypes_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobufwellknowntypes.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_protobufwellknowntypes_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qdoccatch_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qdoccatchconversions_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qdoccatchgenerators_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qml.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qml_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlbuiltins.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlbuiltins_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlcompiler.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlcompiler_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlcore.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlcore_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmldebug_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmldom_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlintegration.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlintegration_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmllocalstorage.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmllocalstorage_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlls_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlmodels.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlmodels_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlnetwork.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlnetwork_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmltest.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmltest_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmltoolingsettings_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmltyperegistrar_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlworkerscript.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlworkerscript_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlxmllistmodel.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_qmlxmllistmodel_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3d.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3d_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dassetimport.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dassetimport_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dassetutils.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dassetutils_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3deffects.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3deffects_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dglslparser_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dhelpers.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dhelpers_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dhelpersimpl.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dhelpersimpl_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3diblbaker.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3diblbaker_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dparticleeffects.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dparticleeffects_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dparticles.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dparticles_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dphysics.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dphysics_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dphysicshelpers.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dphysicshelpers_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3druntimerender.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3druntimerender_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dspatialaudio_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dutils.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick3dutils_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quick_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2basic.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2basic_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2basicstyleimpl.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2basicstyleimpl_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2fusion.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2fusion_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2fusionstyleimpl.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2fusionstyleimpl_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2imagine.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2imagine_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2imaginestyleimpl.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2imaginestyleimpl_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2impl.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2impl_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2material.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2material_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2materialstyleimpl.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2materialstyleimpl_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2universal.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2universal_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2universalstyleimpl.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2universalstyleimpl_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2windowsstyleimpl.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrols2windowsstyleimpl_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickcontrolstestutilsprivate_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickdialogs2.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickdialogs2_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickdialogs2quickimpl.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickdialogs2quickimpl_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickdialogs2utils.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickdialogs2utils_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickeffects_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicklayouts.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicklayouts_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickparticles_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickshapes_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktemplates2.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktestutilsprivate_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktimeline.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktimeline_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktimelineblendtrees.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quicktimelineblendtrees_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickwidgets.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_quickwidgets_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_remoteobjects.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_remoteobjects_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_remoteobjectsqml.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_remoteobjectsqml_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_repparser.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_repparser_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_scxml.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_scxml_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_scxmlqml.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_scxmlqml_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_sensors.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_sensors_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_sensorsquick.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_sensorsquick_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_serialbus.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_serialbus_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_serialport.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_serialport_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_shadertools.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_shadertools_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_spatialaudio.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_spatialaudio_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_sql.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_sql_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_statemachine.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_statemachine_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_statemachineqml.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_statemachineqml_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_svg.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_svg_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_svgwidgets.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_svgwidgets_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_testlib.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_testlib_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_texttospeech.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_texttospeech_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_tools_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_uiplugin.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_uitools.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_uitools_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_virtualkeyboard.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_virtualkeyboard_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_virtualkeyboardsettings.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_virtualkeyboardsettings_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webchannel.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webchannel_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webchannelquick.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webchannelquick_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_websockets.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_websockets_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webview.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webview_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webviewquick.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_webviewquick_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_widgets.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_widgets_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_xml.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_xml_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/modules/qt_lib_zlib_private.pri: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/qt_functions.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/qt_config.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/win32-g++/qmake.conf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/spec_post.prf: +.qmake.stash: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/exclusive_builds.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/toolchain.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/default_pre.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/win32/default_pre.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/resolve_config.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/exclusive_builds_post.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/default_post.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/qml_debug.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/precompile_header.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/warn_on.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/permissions.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/qt.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/resources_functions.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/resources.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/moc.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/win32/opengl.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/uic.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/qmake_use.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/file_copies.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/win32/windows.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/testcase_targets.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/exceptions.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/yacc.prf: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/lex.prf: +../../fly_land.pro: +../../../../Qt/6.7.0/mingw_64/lib/Qt6QuickWidgets.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6Location.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6PositioningQuick.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6QuickShapes.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6Quick.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6OpenGL.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6MultimediaWidgets.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6Widgets.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6Multimedia.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6Gui.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6QmlModels.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6Qml.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6Network.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6Positioning.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6Sql.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6Core.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6QmlBuiltins.prl: +../../../../Qt/6.7.0/mingw_64/lib/Qt6EntryPoint.prl: +../../../../Qt/6.7.0/mingw_64/mkspecs/features/build_pass.prf: +../../Resource.qrc: +qmake: FORCE + @$(QMAKE) -o Makefile ..\..\fly_land.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" + +qmake_all: FORCE + +make_first: debug-make_first release-make_first FORCE +all: debug-all release-all FORCE +clean: debug-clean release-clean FORCE +distclean: debug-distclean release-distclean FORCE + -$(DEL_FILE) Makefile + -$(DEL_FILE) .qmake.stash + +debug-mocclean: + $(MAKE) -f $(MAKEFILE).Debug mocclean +release-mocclean: + $(MAKE) -f $(MAKEFILE).Release mocclean +mocclean: debug-mocclean release-mocclean + +debug-mocables: + $(MAKE) -f $(MAKEFILE).Debug mocables +release-mocables: + $(MAKE) -f $(MAKEFILE).Release mocables +mocables: debug-mocables release-mocables + +check: first + +benchmark: first +FORCE: + +.SUFFIXES: + +$(MAKEFILE).Debug: Makefile +$(MAKEFILE).Release: Makefile diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/Makefile.Debug b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/Makefile.Debug new file mode 100644 index 0000000..a1d503c --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/Makefile.Debug @@ -0,0 +1,3373 @@ +############################################################################# +# Makefile for building: fly_land +# Generated by qmake (3.1) (Qt 6.7.0) +# Project: ..\..\fly_land.pro +# Template: app +############################################################################# + +MAKEFILE = Makefile.Debug + +EQ = = + +####### Compiler, tools and options + +CC = gcc +CXX = g++ +DEFINES = -DUNICODE -D_UNICODE -DWIN32 -DMINGW_HAS_SECURE_API=1 -DQT_QML_DEBUG -DQT_QUICKWIDGETS_LIB -DQT_LOCATION_LIB -DQT_POSITIONINGQUICK_LIB -DQT_QUICKSHAPES_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_MULTIMEDIAWIDGETS_LIB -DQT_WIDGETS_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_POSITIONING_LIB -DQT_SQL_LIB -DQT_CORE_LIB -DQT_QMLBUILTINS_LIB -DQT_NEEDS_QMAIN +CFLAGS = -fno-keep-inline-dllexport -g -Wall -Wextra -Wextra $(DEFINES) +CXXFLAGS = -fno-keep-inline-dllexport -g -std=gnu++1z -Wall -Wextra -Wextra -fexceptions -mthreads $(DEFINES) +INCPATH = -I../../../fly_land -I. -I../../../../Qt/6.7.0/mingw_64/include -I../../../../Qt/6.7.0/mingw_64/include/QtQuickWidgets -I../../../../Qt/6.7.0/mingw_64/include/QtLocation -I../../../../Qt/6.7.0/mingw_64/include/QtPositioningQuick -I../../../../Qt/6.7.0/mingw_64/include/QtQuickShapes -I../../../../Qt/6.7.0/mingw_64/include/QtQuickShapes/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtQuickShapes/6.7.0/QtQuickShapes -I../../../../Qt/6.7.0/mingw_64/include/QtQuick/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtQuick/6.7.0/QtQuick -I../../../../Qt/6.7.0/mingw_64/include/QtQuick -I../../../../Qt/6.7.0/mingw_64/include/QtOpenGL -I../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets -I../../../../Qt/6.7.0/mingw_64/include/QtWidgets -I../../../../Qt/6.7.0/mingw_64/include/QtGui/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtGui/6.7.0/QtGui -I../../../../Qt/6.7.0/mingw_64/include/QtMultimedia -I../../../../Qt/6.7.0/mingw_64/include/QtGui -I../../../../Qt/6.7.0/mingw_64/include/QtQmlModels/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtQmlModels/6.7.0/QtQmlModels -I../../../../Qt/6.7.0/mingw_64/include/QtQmlModels -I../../../../Qt/6.7.0/mingw_64/include/QtQml/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtQml/6.7.0/QtQml -I../../../../Qt/6.7.0/mingw_64/include/QtQml -I../../../../Qt/6.7.0/mingw_64/include/QtQmlIntegration -I../../../../Qt/6.7.0/mingw_64/include/QtNetwork -I../../../../Qt/6.7.0/mingw_64/include/QtPositioning -I../../../../Qt/6.7.0/mingw_64/include/QtCore/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtCore/6.7.0/QtCore -I../../../../Qt/6.7.0/mingw_64/include/QtSql -I../../../../Qt/6.7.0/mingw_64/include/QtCore -I../../../../Qt/6.7.0/mingw_64/include/QtQmlBuiltins/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I../../../../Qt/6.7.0/mingw_64/include/QtQmlBuiltins -Idebug -I. -I/include -I../../../../Qt/6.7.0/mingw_64/mkspecs/win32-g++ +LINKER = g++ +LFLAGS = -Wl,-subsystem,windows -mthreads +LIBS = -lAdvAPI32 D:\Qt\6.7.0\mingw_64\lib\libQt6QuickWidgets.a D:\Qt\6.7.0\mingw_64\lib\libQt6Location.a D:\Qt\6.7.0\mingw_64\lib\libQt6PositioningQuick.a D:\Qt\6.7.0\mingw_64\lib\libQt6QuickShapes.a D:\Qt\6.7.0\mingw_64\lib\libQt6Quick.a D:\Qt\6.7.0\mingw_64\lib\libQt6OpenGL.a D:\Qt\6.7.0\mingw_64\lib\libQt6MultimediaWidgets.a D:\Qt\6.7.0\mingw_64\lib\libQt6Widgets.a D:\Qt\6.7.0\mingw_64\lib\libQt6Multimedia.a D:\Qt\6.7.0\mingw_64\lib\libQt6Gui.a D:\Qt\6.7.0\mingw_64\lib\libQt6QmlModels.a D:\Qt\6.7.0\mingw_64\lib\libQt6Qml.a D:\Qt\6.7.0\mingw_64\lib\libQt6Network.a D:\Qt\6.7.0\mingw_64\lib\libQt6Positioning.a D:\Qt\6.7.0\mingw_64\lib\libQt6Sql.a D:\Qt\6.7.0\mingw_64\lib\libQt6QmlBuiltins.a D:\Qt\6.7.0\mingw_64\lib\libQt6Core.a -lmpr -luserenv -lmingw32 D:\Qt\6.7.0\mingw_64\lib\libQt6EntryPoint.a -lshell32 +QMAKE = D:\Qt\6.7.0\mingw_64\bin\qmake.exe +DEL_FILE = del +CHK_DIR_EXISTS= if not exist +MKDIR = mkdir +COPY = copy /y +COPY_FILE = copy /y +COPY_DIR = xcopy /s /q /y /i +INSTALL_FILE = copy /y +INSTALL_PROGRAM = copy /y +INSTALL_DIR = xcopy /s /q /y /i +QINSTALL = D:\Qt\6.7.0\mingw_64\bin\qmake.exe -install qinstall +QINSTALL_PROGRAM = D:\Qt\6.7.0\mingw_64\bin\qmake.exe -install qinstall -exe +DEL_FILE = del +SYMLINK = $(QMAKE) -install ln -f -s +DEL_DIR = rmdir +MOVE = move +IDC = idc +IDL = midl +ZIP = zip -r -9 +DEF_FILE = +RES_FILE = +SED = $(QMAKE) -install sed +MOVE = move + +####### Output directory + +OBJECTS_DIR = debug + +####### Files + +SOURCES = ..\..\CommunicationUI.cpp \ + ..\..\DogControlUI.cpp \ + ..\..\GuidingUI.cpp \ + ..\..\InjuryAnalysisUI.cpp \ + ..\..\InjuryDatabase.cpp \ + ..\..\InjuryDisplayUI.cpp \ + ..\..\UAVControlUI.cpp \ + ..\..\main.cpp debug\qrc_Resource.cpp \ + debug\moc_CommunicationUI.cpp \ + debug\moc_DogControlUI.cpp \ + debug\moc_GuidingUI.cpp \ + debug\moc_InjuryAnalysisUI.cpp \ + debug\moc_InjuryDisplayUI.cpp \ + debug\moc_UAVControlUI.cpp +OBJECTS = debug/CommunicationUI.o \ + debug/DogControlUI.o \ + debug/GuidingUI.o \ + debug/InjuryAnalysisUI.o \ + debug/InjuryDatabase.o \ + debug/InjuryDisplayUI.o \ + debug/UAVControlUI.o \ + debug/main.o \ + debug/qrc_Resource.o \ + debug/moc_CommunicationUI.o \ + debug/moc_DogControlUI.o \ + debug/moc_GuidingUI.o \ + debug/moc_InjuryAnalysisUI.o \ + debug/moc_InjuryDisplayUI.o \ + debug/moc_UAVControlUI.o + +DIST = ..\..\CommunicationUI.h \ + ..\..\DogControlUI.h \ + ..\..\GuidingUI.h \ + ..\..\InjuryAnalysisUI.h \ + ..\..\InjuryDatabase.h \ + ..\..\InjuryDisplayUI.h \ + ..\..\UAVControlUI.h ..\..\CommunicationUI.cpp \ + ..\..\DogControlUI.cpp \ + ..\..\GuidingUI.cpp \ + ..\..\InjuryAnalysisUI.cpp \ + ..\..\InjuryDatabase.cpp \ + ..\..\InjuryDisplayUI.cpp \ + ..\..\UAVControlUI.cpp \ + ..\..\main.cpp +QMAKE_TARGET = fly_land +DESTDIR = debug\ #avoid trailing-slash linebreak +TARGET = fly_land.exe +DESTDIR_TARGET = debug\fly_land.exe + +####### Build rules + +first: all +all: Makefile.Debug debug/fly_land.exe + +debug/fly_land.exe: D:/Qt/6.7.0/mingw_64/lib/libQt6QuickWidgets.a D:/Qt/6.7.0/mingw_64/lib/libQt6Location.a D:/Qt/6.7.0/mingw_64/lib/libQt6PositioningQuick.a D:/Qt/6.7.0/mingw_64/lib/libQt6QuickShapes.a D:/Qt/6.7.0/mingw_64/lib/libQt6Quick.a D:/Qt/6.7.0/mingw_64/lib/libQt6OpenGL.a D:/Qt/6.7.0/mingw_64/lib/libQt6MultimediaWidgets.a D:/Qt/6.7.0/mingw_64/lib/libQt6Widgets.a D:/Qt/6.7.0/mingw_64/lib/libQt6Multimedia.a D:/Qt/6.7.0/mingw_64/lib/libQt6Gui.a D:/Qt/6.7.0/mingw_64/lib/libQt6QmlModels.a D:/Qt/6.7.0/mingw_64/lib/libQt6Qml.a D:/Qt/6.7.0/mingw_64/lib/libQt6Network.a D:/Qt/6.7.0/mingw_64/lib/libQt6Positioning.a D:/Qt/6.7.0/mingw_64/lib/libQt6Sql.a D:/Qt/6.7.0/mingw_64/lib/libQt6Core.a D:/Qt/6.7.0/mingw_64/lib/libQt6QmlBuiltins.a D:/Qt/6.7.0/mingw_64/lib/libQt6EntryPoint.a ui_CommunicationUI.h ui_DogControlUI.h ui_GuidingUI.h ui_InjuryAnalysisUI.h ui_InjuryDisplayUI.h ui_UAVControlUI.h $(OBJECTS) + $(LINKER) $(LFLAGS) -o $(DESTDIR_TARGET) @debug\object_script.fly_land.Debug $(LIBS) + +qmake: FORCE + @$(QMAKE) -o Makefile.Debug ..\..\fly_land.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" + +qmake_all: FORCE + +dist: + $(ZIP) fly_land.zip $(SOURCES) $(DIST) ..\..\..\..\fly_land.pro ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\spec_pre.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\device_config.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\common\sanitize.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\common\gcc-base.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\common\g++-base.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\win32\windows_vulkan_sdk.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\common\windows-vulkan.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\common\g++-win32.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\common\windows-desktop.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\qconfig.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_ext_freetype.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_ext_libjpeg.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_ext_libpng.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3danimation.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3danimation_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dcore.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dcore_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dextras.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dextras_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dinput.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dinput_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dlogic.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dlogic_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickanimation.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickanimation_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickextras.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickextras_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickinput.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickinput_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickrender.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickrender_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickscene2d.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickscene2d_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3drender.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3drender_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_activeqt.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_activeqt_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_axbase_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_axcontainer.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_axcontainer_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_axserver.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_axserver_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_bluetooth.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_bluetooth_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_bodymovin_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_charts.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_charts_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_chartsqml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_chartsqml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_concurrent.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_concurrent_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_core.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_core_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_datavisualization.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_datavisualization_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_datavisualizationqml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_datavisualizationqml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_dbus.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_dbus_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_designer.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_designer_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_designercomponents_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_devicediscovery_support_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_entrypoint_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_example_icons_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_fb_support_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_freetype_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_graphs.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_graphs_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_grpc.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_grpc_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_grpcquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_grpcquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_gui.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_gui_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_harfbuzz_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_help.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_help_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_httpserver.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_httpserver_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_insighttracker.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_insighttracker_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_insighttrackerqml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_insighttrackerqml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_jpeg_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_jsonrpc_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labsanimation.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labsanimation_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labsfolderlistmodel.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labsfolderlistmodel_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labsqmlmodels.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labsqmlmodels_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labssettings.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labssettings_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labssharedimage.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labssharedimage_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labswavefrontmesh.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labswavefrontmesh_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_languageserver_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_linguist.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_location.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_location_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_multimedia.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_multimedia_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_multimediaquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_multimediawidgets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_multimediawidgets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_network.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_network_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_networkauth.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_networkauth_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_nfc.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_nfc_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_opengl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_opengl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_openglwidgets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_openglwidgets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_packetprotocol_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_pdf.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_pdf_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_pdfquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_pdfquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_pdfwidgets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_pdfwidgets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_png_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_positioning.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_positioning_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_positioningquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_positioningquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_printsupport.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_printsupport_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobuf.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobuf_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobufqtcoretypes.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobufqtcoretypes_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobufqtguitypes.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobufqtguitypes_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobufwellknowntypes.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobufwellknowntypes_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qdoccatch_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qdoccatchconversions_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qdoccatchgenerators_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlbuiltins.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlbuiltins_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlcompiler.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlcompiler_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlcore.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlcore_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmldebug_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmldom_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlintegration.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlintegration_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmllocalstorage.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmllocalstorage_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlls_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlmodels.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlmodels_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlnetwork.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlnetwork_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmltest.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmltest_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmltoolingsettings_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmltyperegistrar_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlworkerscript.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlworkerscript_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlxmllistmodel.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlxmllistmodel_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3d.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3d_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dassetimport.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dassetimport_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dassetutils.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dassetutils_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3deffects.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3deffects_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dglslparser_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dhelpers.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dhelpers_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dhelpersimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dhelpersimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3diblbaker.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3diblbaker_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dparticleeffects.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dparticleeffects_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dparticles.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dparticles_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dphysics.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dphysics_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dphysicshelpers.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dphysicshelpers_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3druntimerender.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3druntimerender_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dspatialaudio_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dutils.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dutils_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2basic.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2basic_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2basicstyleimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2basicstyleimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2fusion.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2fusion_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2fusionstyleimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2fusionstyleimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2imagine.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2imagine_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2imaginestyleimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2imaginestyleimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2impl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2impl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2material.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2material_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2materialstyleimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2materialstyleimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2universal.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2universal_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2universalstyleimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2universalstyleimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2windowsstyleimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2windowsstyleimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrolstestutilsprivate_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickdialogs2.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickdialogs2_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickdialogs2quickimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickdialogs2quickimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickdialogs2utils.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickdialogs2utils_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickeffects_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicklayouts.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicklayouts_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickparticles_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickshapes_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktemplates2.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktemplates2_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktestutilsprivate_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktimeline.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktimeline_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktimelineblendtrees.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktimelineblendtrees_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickwidgets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickwidgets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_remoteobjects.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_remoteobjects_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_remoteobjectsqml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_remoteobjectsqml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_repparser.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_repparser_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_scxml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_scxml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_scxmlqml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_scxmlqml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_sensors.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_sensors_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_sensorsquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_sensorsquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_serialbus.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_serialbus_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_serialport.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_serialport_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_shadertools.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_shadertools_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_spatialaudio.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_spatialaudio_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_sql.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_sql_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_statemachine.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_statemachine_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_statemachineqml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_statemachineqml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_svg.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_svg_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_svgwidgets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_svgwidgets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_testlib.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_testlib_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_texttospeech.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_texttospeech_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_tools_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_uiplugin.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_uitools.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_uitools_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_virtualkeyboard.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_virtualkeyboard_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_virtualkeyboardsettings.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_virtualkeyboardsettings_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webchannel.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webchannel_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webchannelquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webchannelquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_websockets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_websockets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webview.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webview_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webviewquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webviewquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_widgets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_widgets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_xml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_xml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_zlib_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\qt_functions.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\qt_config.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\win32-g++\qmake.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\spec_post.prf .qmake.stash ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\exclusive_builds.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\toolchain.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\default_pre.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\win32\default_pre.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\resolve_config.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\exclusive_builds_post.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\default_post.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\build_pass.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\qml_debug.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\precompile_header.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\warn_on.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\permissions.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\qt.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\resources_functions.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\resources.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\moc.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\win32\opengl.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\uic.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\qmake_use.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\file_copies.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\win32\windows.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\testcase_targets.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\exceptions.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\yacc.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\lex.prf ..\..\fly_land.pro ..\..\Resource.qrc ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6QuickWidgets.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Location.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6PositioningQuick.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6QuickShapes.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Quick.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6OpenGL.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6MultimediaWidgets.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Widgets.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Multimedia.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Gui.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6QmlModels.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Qml.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Network.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Positioning.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Sql.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Core.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6QmlBuiltins.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6EntryPoint.prl ..\..\Resource.qrc ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\data\dummy.cpp ..\..\CommunicationUI.h ..\..\DogControlUI.h ..\..\GuidingUI.h ..\..\InjuryAnalysisUI.h ..\..\InjuryDatabase.h ..\..\InjuryDisplayUI.h ..\..\UAVControlUI.h ..\..\CommunicationUI.cpp ..\..\DogControlUI.cpp ..\..\GuidingUI.cpp ..\..\InjuryAnalysisUI.cpp ..\..\InjuryDatabase.cpp ..\..\InjuryDisplayUI.cpp ..\..\UAVControlUI.cpp ..\..\main.cpp ..\..\CommunicationUI.ui ..\..\DogControlUI.ui ..\..\GuidingUI.ui ..\..\InjuryAnalysisUI.ui ..\..\InjuryDisplayUI.ui ..\..\UAVControlUI.ui + +clean: compiler_clean + -$(DEL_FILE) debug\CommunicationUI.o debug\DogControlUI.o debug\GuidingUI.o debug\InjuryAnalysisUI.o debug\InjuryDatabase.o debug\InjuryDisplayUI.o debug\UAVControlUI.o debug\main.o debug\qrc_Resource.o debug\moc_CommunicationUI.o debug\moc_DogControlUI.o debug\moc_GuidingUI.o debug\moc_InjuryAnalysisUI.o debug\moc_InjuryDisplayUI.o debug\moc_UAVControlUI.o + +distclean: clean + -$(DEL_FILE) .qmake.stash + -$(DEL_FILE) $(DESTDIR_TARGET) + -$(DEL_FILE) Makefile.Debug + +mocclean: compiler_moc_header_clean compiler_moc_objc_header_clean compiler_moc_source_clean + +mocables: compiler_moc_header_make_all compiler_moc_objc_header_make_all compiler_moc_source_make_all + +check: first + +benchmark: first + +compiler_no_pch_compiler_make_all: +compiler_no_pch_compiler_clean: +compiler_rcc_make_all: debug/qrc_Resource.cpp +compiler_rcc_clean: + -$(DEL_FILE) debug\qrc_Resource.cpp +debug/qrc_Resource.cpp: ../../Resource.qrc \ + ../../../../Qt/6.7.0/mingw_64/bin/rcc.exe \ + ../../map.qml + D:\Qt\6.7.0\mingw_64\bin\rcc.exe -name Resource --no-zstd ..\..\Resource.qrc -o debug\qrc_Resource.cpp + +compiler_moc_predefs_make_all: debug/moc_predefs.h +compiler_moc_predefs_clean: + -$(DEL_FILE) debug\moc_predefs.h +debug/moc_predefs.h: ../../../../Qt/6.7.0/mingw_64/mkspecs/features/data/dummy.cpp + g++ -fno-keep-inline-dllexport -g -std=gnu++1z -Wall -Wextra -Wextra -dM -E -o debug\moc_predefs.h ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\data\dummy.cpp + +compiler_moc_header_make_all: debug/moc_CommunicationUI.cpp debug/moc_DogControlUI.cpp debug/moc_GuidingUI.cpp debug/moc_InjuryAnalysisUI.cpp debug/moc_InjuryDisplayUI.cpp debug/moc_UAVControlUI.cpp +compiler_moc_header_clean: + -$(DEL_FILE) debug\moc_CommunicationUI.cpp debug\moc_DogControlUI.cpp debug\moc_GuidingUI.cpp debug\moc_InjuryAnalysisUI.cpp debug\moc_InjuryDisplayUI.cpp debug\moc_UAVControlUI.cpp +debug/moc_CommunicationUI.cpp: ../../CommunicationUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + debug/mocinclude.opt \ + debug/moc_predefs.h \ + ../../../../Qt/6.7.0/mingw_64/bin/moc.exe + D:\Qt\6.7.0\mingw_64\bin\moc.exe $(DEFINES) --include D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_predefs.h @debug/mocinclude.opt ..\..\CommunicationUI.h -o debug\moc_CommunicationUI.cpp + +debug/moc_DogControlUI.cpp: ../../DogControlUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + debug/mocinclude.opt \ + debug/moc_predefs.h \ + ../../../../Qt/6.7.0/mingw_64/bin/moc.exe + D:\Qt\6.7.0\mingw_64\bin\moc.exe $(DEFINES) --include D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_predefs.h @debug/mocinclude.opt ..\..\DogControlUI.h -o debug\moc_DogControlUI.cpp + +debug/moc_GuidingUI.cpp: ../../GuidingUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + debug/mocinclude.opt \ + debug/moc_predefs.h \ + ../../../../Qt/6.7.0/mingw_64/bin/moc.exe + D:\Qt\6.7.0\mingw_64\bin\moc.exe $(DEFINES) --include D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_predefs.h @debug/mocinclude.opt ..\..\GuidingUI.h -o debug\moc_GuidingUI.cpp + +debug/moc_InjuryAnalysisUI.cpp: ../../InjuryAnalysisUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + debug/mocinclude.opt \ + debug/moc_predefs.h \ + ../../../../Qt/6.7.0/mingw_64/bin/moc.exe + D:\Qt\6.7.0\mingw_64\bin\moc.exe $(DEFINES) --include D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_predefs.h @debug/mocinclude.opt ..\..\InjuryAnalysisUI.h -o debug\moc_InjuryAnalysisUI.cpp + +debug/moc_InjuryDisplayUI.cpp: ../../InjuryDisplayUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + debug/mocinclude.opt \ + debug/moc_predefs.h \ + ../../../../Qt/6.7.0/mingw_64/bin/moc.exe + D:\Qt\6.7.0\mingw_64\bin\moc.exe $(DEFINES) --include D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_predefs.h @debug/mocinclude.opt ..\..\InjuryDisplayUI.h -o debug\moc_InjuryDisplayUI.cpp + +debug/moc_UAVControlUI.cpp: ../../UAVControlUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + debug/mocinclude.opt \ + debug/moc_predefs.h \ + ../../../../Qt/6.7.0/mingw_64/bin/moc.exe + D:\Qt\6.7.0\mingw_64\bin\moc.exe $(DEFINES) --include D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_predefs.h @debug/mocinclude.opt ..\..\UAVControlUI.h -o debug\moc_UAVControlUI.cpp + +compiler_moc_objc_header_make_all: +compiler_moc_objc_header_clean: +compiler_moc_source_make_all: +compiler_moc_source_clean: +compiler_uic_make_all: ui_CommunicationUI.h ui_DogControlUI.h ui_GuidingUI.h ui_InjuryAnalysisUI.h ui_InjuryDisplayUI.h ui_UAVControlUI.h +compiler_uic_clean: + -$(DEL_FILE) ui_CommunicationUI.h ui_DogControlUI.h ui_GuidingUI.h ui_InjuryAnalysisUI.h ui_InjuryDisplayUI.h ui_UAVControlUI.h +ui_CommunicationUI.h: ../../CommunicationUI.ui \ + ../../../../Qt/6.7.0/mingw_64/bin/uic.exe + D:\Qt\6.7.0\mingw_64\bin\uic.exe ..\..\CommunicationUI.ui -o ui_CommunicationUI.h + +ui_DogControlUI.h: ../../DogControlUI.ui \ + ../../../../Qt/6.7.0/mingw_64/bin/uic.exe + D:\Qt\6.7.0\mingw_64\bin\uic.exe ..\..\DogControlUI.ui -o ui_DogControlUI.h + +ui_GuidingUI.h: ../../GuidingUI.ui \ + ../../../../Qt/6.7.0/mingw_64/bin/uic.exe + D:\Qt\6.7.0\mingw_64\bin\uic.exe ..\..\GuidingUI.ui -o ui_GuidingUI.h + +ui_InjuryAnalysisUI.h: ../../InjuryAnalysisUI.ui \ + ../../../../Qt/6.7.0/mingw_64/bin/uic.exe + D:\Qt\6.7.0\mingw_64\bin\uic.exe ..\..\InjuryAnalysisUI.ui -o ui_InjuryAnalysisUI.h + +ui_InjuryDisplayUI.h: ../../InjuryDisplayUI.ui \ + ../../../../Qt/6.7.0/mingw_64/bin/uic.exe \ + ../../../../Qt/6.7.0/mingw_64/include/QtQuickWidgets/QQuickWidget + D:\Qt\6.7.0\mingw_64\bin\uic.exe ..\..\InjuryDisplayUI.ui -o ui_InjuryDisplayUI.h + +ui_UAVControlUI.h: ../../UAVControlUI.ui \ + ../../../../Qt/6.7.0/mingw_64/bin/uic.exe + D:\Qt\6.7.0\mingw_64\bin\uic.exe ..\..\UAVControlUI.ui -o ui_UAVControlUI.h + +compiler_yacc_decl_make_all: +compiler_yacc_decl_clean: +compiler_yacc_impl_make_all: +compiler_yacc_impl_clean: +compiler_lex_make_all: +compiler_lex_clean: +compiler_clean: compiler_rcc_clean compiler_moc_predefs_clean compiler_moc_header_clean compiler_uic_clean + + + +####### Compile + +debug/CommunicationUI.o: ../../CommunicationUI.cpp ../../CommunicationUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ui_CommunicationUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QApplication \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/QMediaPlayer \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qmediaplayer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimediaglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimedia-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimediaexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qmediaenumdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetaobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtaudio.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qaudio.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/QVideoWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qvideowidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qtmultimediawidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qtmultimediawidgetsexports.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\CommunicationUI.o ..\..\CommunicationUI.cpp + +debug/DogControlUI.o: ../../DogControlUI.cpp ../../DogControlUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ui_DogControlUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QApplication \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/QMediaPlayer \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qmediaplayer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimediaglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimedia-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimediaexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qmediaenumdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetaobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtaudio.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qaudio.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/QVideoWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qvideowidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qtmultimediawidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qtmultimediawidgetsexports.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\DogControlUI.o ..\..\DogControlUI.cpp + +debug/GuidingUI.o: ../../GuidingUI.cpp ../../GuidingUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ui_GuidingUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QApplication \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QPushButton \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qpushbutton.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractbutton.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QVBoxLayout \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qboxlayout.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qlayout.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qlayoutitem.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qgridlayout.h \ + ../../DogControlUI.h \ + ../../UAVControlUI.h \ + ../../CommunicationUI.h \ + ../../InjuryDisplayUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QMessageBox \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qmessagebox.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qdialog.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qdialogbuttonbox.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\GuidingUI.o ..\..\GuidingUI.cpp + +debug/InjuryAnalysisUI.o: ../../InjuryAnalysisUI.cpp ../../InjuryAnalysisUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ui_InjuryAnalysisUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QApplication \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QLabel \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qlabel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qframe.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpicture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtextdocument.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\InjuryAnalysisUI.o ..\..\InjuryAnalysisUI.cpp + +debug/InjuryDatabase.o: ../../InjuryDatabase.cpp ../../InjuryDatabase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QtSql \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QtSqlDepends \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QtCore \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QtCoreDepends \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20algorithm.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20chrono.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20iterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20map.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20vector.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstracteventdispatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractitemmodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractnativeeventfilter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanimationgroup.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qapplicationstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QMutex \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassociativeiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomicscopedvaluerollback.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasictimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbitarray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbuffer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraymatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcalendar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborarray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborvalue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatetime.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborcommon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qregularexpression.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/quuid.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcbormap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborstreamreader.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborstreamwriter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcollator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcommandlineoption.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcommandlineparser.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconcatenatetablesproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcryptographichash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdir.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfiledevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfileinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtimezone.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdiriterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeasingcurve.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfactoryinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfileselector.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QStringList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfilesystemwatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuturesynchronizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuturewatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qidentityproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qitemselectionmodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsonarray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsonvalue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsondocument.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsonobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlibrary.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlibraryinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversionnumber.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtyperevision.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlockfile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qloggingcategory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmessageauthenticationcode.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetaobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmimedata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmimedatabase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmimetype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectcleanuphandler.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoperatingsystemversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qparallelanimationgroup.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpauseanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpermissions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qplugin.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpluginloader.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocess.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qproperty.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpropertyprivate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpropertyanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariantanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qqueue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrandom.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qreadwritelock.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsavefile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedvaluerollback.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsemaphore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsequentialanimationgroup.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsequentialiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsettings.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedmemory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtipccommon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsignalmapper.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsimd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsocketnotifier.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsortfilterproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qspan.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstack.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstandardpaths.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstaticlatin1stringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstorageinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlistmodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemsemaphore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtemporarydir.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtemporaryfile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextboundaryfinder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtimeline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtranslator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtransposeproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsymbolmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurlquery.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarianthash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QHash \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QString \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariantlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariantmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QMap \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvector.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qwaitcondition.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QDeadlineTimer \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qwineventnotifier.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxmlstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxpfunctional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsqlglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsql-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsqlexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqldatabase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqldriver.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqldriverplugin.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlerror.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlfield.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlindex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlrecord.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlquery.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlquerymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlrelationaldelegate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qstyleditemdelegate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemdelegate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qstyleoption.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractspinbox.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvalidator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qslider.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractslider.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qstyle.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtabbar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtabwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qrubberband.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qframe.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qlistview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractscrollarea.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qcombobox.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlrelationaltablemodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqltablemodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlresult.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsqlversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QSqlQuery \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QSqlDatabase \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QSqlRecord \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QDebug + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\InjuryDatabase.o ..\..\InjuryDatabase.cpp + +debug/InjuryDisplayUI.o: ../../InjuryDisplayUI.cpp ../../InjuryDisplayUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ui_InjuryDisplayUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuickWidgets/QQuickWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuickWidgets/qquickwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qquickwindow.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qtquickglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qtqmlglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qtqml-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtNetwork/qtnetworkglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtNetwork/qtnetwork-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtNetwork/qtnetworkexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qtqmlexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qtquick-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qtquickexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qsgrendererinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qsgnode.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qsggeometry.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRectF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QMatrix4x4 \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qmatrix4x4.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector3d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector4d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qquaternion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qgenericmatrix.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindow.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QEvent \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QMargins \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qsurface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qsurfaceformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqml.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlprivate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qjsprimitivevalue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qjsnumbercoercion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qjsvalue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmllist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlparserstatus.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlpropertyvaluesource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatetime.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcalendar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetaobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversionnumber.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtyperevision.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlregistration.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQmlIntegration/qqmlintegration.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmldebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlerror.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuickWidgets/qtquickwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuickWidgets/qtquickwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QApplication \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QPushButton \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qpushbutton.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractbutton.h \ + ../../InjuryAnalysisUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/QQuickItem \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qquickitem.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlcomponent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qproperty.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpropertyprivate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaccessible.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaccessible_base.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\InjuryDisplayUI.o ..\..\InjuryDisplayUI.cpp + +debug/UAVControlUI.o: ../../UAVControlUI.cpp ../../UAVControlUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ui_UAVControlUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QApplication \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/QMediaPlayer \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qmediaplayer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimediaglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimedia-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimediaexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qmediaenumdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetaobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtaudio.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qaudio.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/QVideoWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qvideowidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qtmultimediawidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qtmultimediawidgetsexports.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\UAVControlUI.o ..\..\UAVControlUI.cpp + +debug/main.o: ../../main.cpp ../../GuidingUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ../../InjuryDatabase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QtSql \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QtSqlDepends \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QtCore \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QtCoreDepends \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20algorithm.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20chrono.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20iterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20map.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20vector.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstracteventdispatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractitemmodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractnativeeventfilter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanimationgroup.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qapplicationstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QMutex \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassociativeiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomicscopedvaluerollback.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasictimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbitarray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbuffer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraymatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcalendar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborarray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborvalue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatetime.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborcommon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qregularexpression.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/quuid.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcbormap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborstreamreader.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborstreamwriter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcollator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcommandlineoption.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcommandlineparser.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconcatenatetablesproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcryptographichash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdir.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfiledevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfileinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtimezone.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdiriterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeasingcurve.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfactoryinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfileselector.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QStringList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfilesystemwatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuturesynchronizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuturewatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qidentityproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qitemselectionmodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsonarray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsonvalue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsondocument.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsonobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlibrary.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlibraryinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversionnumber.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtyperevision.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlockfile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qloggingcategory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmessageauthenticationcode.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetaobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmimedata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmimedatabase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmimetype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectcleanuphandler.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoperatingsystemversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qparallelanimationgroup.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpauseanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpermissions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qplugin.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpluginloader.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocess.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qproperty.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpropertyprivate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpropertyanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariantanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qqueue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrandom.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qreadwritelock.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsavefile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedvaluerollback.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsemaphore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsequentialanimationgroup.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsequentialiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsettings.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedmemory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtipccommon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsignalmapper.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsimd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsocketnotifier.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsortfilterproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qspan.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstack.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstandardpaths.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstaticlatin1stringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstorageinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlistmodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemsemaphore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtemporarydir.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtemporaryfile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextboundaryfinder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtimeline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtranslator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtransposeproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsymbolmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurlquery.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarianthash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QHash \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QString \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariantlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariantmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QMap \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvector.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qwaitcondition.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QDeadlineTimer \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qwineventnotifier.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxmlstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxpfunctional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsqlglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsql-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsqlexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqldatabase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqldriver.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqldriverplugin.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlerror.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlfield.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlindex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlrecord.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlquery.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlquerymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlrelationaldelegate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qstyleditemdelegate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemdelegate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qstyleoption.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractspinbox.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvalidator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qslider.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractslider.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qstyle.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtabbar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtabwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qrubberband.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qframe.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qlistview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractscrollarea.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qcombobox.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlrelationaltablemodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqltablemodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlresult.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsqlversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QSqlQuery \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QSqlDatabase \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QSqlRecord \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QDebug + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\main.o ..\..\main.cpp + +debug/qrc_Resource.o: debug/qrc_Resource.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\qrc_Resource.o debug\qrc_Resource.cpp + +debug/moc_CommunicationUI.o: debug/moc_CommunicationUI.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\moc_CommunicationUI.o debug\moc_CommunicationUI.cpp + +debug/moc_DogControlUI.o: debug/moc_DogControlUI.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\moc_DogControlUI.o debug\moc_DogControlUI.cpp + +debug/moc_GuidingUI.o: debug/moc_GuidingUI.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\moc_GuidingUI.o debug\moc_GuidingUI.cpp + +debug/moc_InjuryAnalysisUI.o: debug/moc_InjuryAnalysisUI.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\moc_InjuryAnalysisUI.o debug\moc_InjuryAnalysisUI.cpp + +debug/moc_InjuryDisplayUI.o: debug/moc_InjuryDisplayUI.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\moc_InjuryDisplayUI.o debug\moc_InjuryDisplayUI.cpp + +debug/moc_UAVControlUI.o: debug/moc_UAVControlUI.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\moc_UAVControlUI.o debug\moc_UAVControlUI.cpp + +####### Install + +install: FORCE + +uninstall: FORCE + +FORCE: + +.SUFFIXES: + diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/Makefile.Release b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/Makefile.Release new file mode 100644 index 0000000..c93fca2 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/Makefile.Release @@ -0,0 +1,3373 @@ +############################################################################# +# Makefile for building: fly_land +# Generated by qmake (3.1) (Qt 6.7.0) +# Project: ..\..\fly_land.pro +# Template: app +############################################################################# + +MAKEFILE = Makefile.Release + +EQ = = + +####### Compiler, tools and options + +CC = gcc +CXX = g++ +DEFINES = -DUNICODE -D_UNICODE -DWIN32 -DMINGW_HAS_SECURE_API=1 -DQT_QML_DEBUG -DQT_NO_DEBUG -DQT_QUICKWIDGETS_LIB -DQT_LOCATION_LIB -DQT_POSITIONINGQUICK_LIB -DQT_QUICKSHAPES_LIB -DQT_QUICK_LIB -DQT_OPENGL_LIB -DQT_MULTIMEDIAWIDGETS_LIB -DQT_WIDGETS_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_QML_LIB -DQT_QMLINTEGRATION_LIB -DQT_NETWORK_LIB -DQT_POSITIONING_LIB -DQT_SQL_LIB -DQT_CORE_LIB -DQT_QMLBUILTINS_LIB -DQT_NEEDS_QMAIN +CFLAGS = -fno-keep-inline-dllexport -O2 -Wall -Wextra -Wextra $(DEFINES) +CXXFLAGS = -fno-keep-inline-dllexport -O2 -std=gnu++1z -Wall -Wextra -Wextra -fexceptions -mthreads $(DEFINES) +INCPATH = -I../../../fly_land -I. -I../../../../Qt/6.7.0/mingw_64/include -I../../../../Qt/6.7.0/mingw_64/include/QtQuickWidgets -I../../../../Qt/6.7.0/mingw_64/include/QtLocation -I../../../../Qt/6.7.0/mingw_64/include/QtPositioningQuick -I../../../../Qt/6.7.0/mingw_64/include/QtQuickShapes -I../../../../Qt/6.7.0/mingw_64/include/QtQuickShapes/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtQuickShapes/6.7.0/QtQuickShapes -I../../../../Qt/6.7.0/mingw_64/include/QtQuick/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtQuick/6.7.0/QtQuick -I../../../../Qt/6.7.0/mingw_64/include/QtQuick -I../../../../Qt/6.7.0/mingw_64/include/QtOpenGL -I../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets -I../../../../Qt/6.7.0/mingw_64/include/QtWidgets -I../../../../Qt/6.7.0/mingw_64/include/QtGui/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtGui/6.7.0/QtGui -I../../../../Qt/6.7.0/mingw_64/include/QtMultimedia -I../../../../Qt/6.7.0/mingw_64/include/QtGui -I../../../../Qt/6.7.0/mingw_64/include/QtQmlModels/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtQmlModels/6.7.0/QtQmlModels -I../../../../Qt/6.7.0/mingw_64/include/QtQmlModels -I../../../../Qt/6.7.0/mingw_64/include/QtQml/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtQml/6.7.0/QtQml -I../../../../Qt/6.7.0/mingw_64/include/QtQml -I../../../../Qt/6.7.0/mingw_64/include/QtQmlIntegration -I../../../../Qt/6.7.0/mingw_64/include/QtNetwork -I../../../../Qt/6.7.0/mingw_64/include/QtPositioning -I../../../../Qt/6.7.0/mingw_64/include/QtCore/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtCore/6.7.0/QtCore -I../../../../Qt/6.7.0/mingw_64/include/QtSql -I../../../../Qt/6.7.0/mingw_64/include/QtCore -I../../../../Qt/6.7.0/mingw_64/include/QtQmlBuiltins/6.7.0 -I../../../../Qt/6.7.0/mingw_64/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins -I../../../../Qt/6.7.0/mingw_64/include/QtQmlBuiltins -Irelease -I. -I/include -I../../../../Qt/6.7.0/mingw_64/mkspecs/win32-g++ +LINKER = g++ +LFLAGS = -Wl,-s -Wl,-subsystem,windows -mthreads +LIBS = -lAdvAPI32 D:\Qt\6.7.0\mingw_64\lib\libQt6QuickWidgets.a D:\Qt\6.7.0\mingw_64\lib\libQt6Location.a D:\Qt\6.7.0\mingw_64\lib\libQt6PositioningQuick.a D:\Qt\6.7.0\mingw_64\lib\libQt6QuickShapes.a D:\Qt\6.7.0\mingw_64\lib\libQt6Quick.a D:\Qt\6.7.0\mingw_64\lib\libQt6OpenGL.a D:\Qt\6.7.0\mingw_64\lib\libQt6MultimediaWidgets.a D:\Qt\6.7.0\mingw_64\lib\libQt6Widgets.a D:\Qt\6.7.0\mingw_64\lib\libQt6Multimedia.a D:\Qt\6.7.0\mingw_64\lib\libQt6Gui.a D:\Qt\6.7.0\mingw_64\lib\libQt6QmlModels.a D:\Qt\6.7.0\mingw_64\lib\libQt6Qml.a D:\Qt\6.7.0\mingw_64\lib\libQt6Network.a D:\Qt\6.7.0\mingw_64\lib\libQt6Positioning.a D:\Qt\6.7.0\mingw_64\lib\libQt6Sql.a D:\Qt\6.7.0\mingw_64\lib\libQt6QmlBuiltins.a D:\Qt\6.7.0\mingw_64\lib\libQt6Core.a -lmpr -luserenv -lmingw32 D:\Qt\6.7.0\mingw_64\lib\libQt6EntryPoint.a -lshell32 +QMAKE = D:\Qt\6.7.0\mingw_64\bin\qmake.exe +DEL_FILE = del +CHK_DIR_EXISTS= if not exist +MKDIR = mkdir +COPY = copy /y +COPY_FILE = copy /y +COPY_DIR = xcopy /s /q /y /i +INSTALL_FILE = copy /y +INSTALL_PROGRAM = copy /y +INSTALL_DIR = xcopy /s /q /y /i +QINSTALL = D:\Qt\6.7.0\mingw_64\bin\qmake.exe -install qinstall +QINSTALL_PROGRAM = D:\Qt\6.7.0\mingw_64\bin\qmake.exe -install qinstall -exe +DEL_FILE = del +SYMLINK = $(QMAKE) -install ln -f -s +DEL_DIR = rmdir +MOVE = move +IDC = idc +IDL = midl +ZIP = zip -r -9 +DEF_FILE = +RES_FILE = +SED = $(QMAKE) -install sed +MOVE = move + +####### Output directory + +OBJECTS_DIR = release + +####### Files + +SOURCES = ..\..\CommunicationUI.cpp \ + ..\..\DogControlUI.cpp \ + ..\..\GuidingUI.cpp \ + ..\..\InjuryAnalysisUI.cpp \ + ..\..\InjuryDatabase.cpp \ + ..\..\InjuryDisplayUI.cpp \ + ..\..\UAVControlUI.cpp \ + ..\..\main.cpp release\qrc_Resource.cpp \ + release\moc_CommunicationUI.cpp \ + release\moc_DogControlUI.cpp \ + release\moc_GuidingUI.cpp \ + release\moc_InjuryAnalysisUI.cpp \ + release\moc_InjuryDisplayUI.cpp \ + release\moc_UAVControlUI.cpp +OBJECTS = release/CommunicationUI.o \ + release/DogControlUI.o \ + release/GuidingUI.o \ + release/InjuryAnalysisUI.o \ + release/InjuryDatabase.o \ + release/InjuryDisplayUI.o \ + release/UAVControlUI.o \ + release/main.o \ + release/qrc_Resource.o \ + release/moc_CommunicationUI.o \ + release/moc_DogControlUI.o \ + release/moc_GuidingUI.o \ + release/moc_InjuryAnalysisUI.o \ + release/moc_InjuryDisplayUI.o \ + release/moc_UAVControlUI.o + +DIST = ..\..\CommunicationUI.h \ + ..\..\DogControlUI.h \ + ..\..\GuidingUI.h \ + ..\..\InjuryAnalysisUI.h \ + ..\..\InjuryDatabase.h \ + ..\..\InjuryDisplayUI.h \ + ..\..\UAVControlUI.h ..\..\CommunicationUI.cpp \ + ..\..\DogControlUI.cpp \ + ..\..\GuidingUI.cpp \ + ..\..\InjuryAnalysisUI.cpp \ + ..\..\InjuryDatabase.cpp \ + ..\..\InjuryDisplayUI.cpp \ + ..\..\UAVControlUI.cpp \ + ..\..\main.cpp +QMAKE_TARGET = fly_land +DESTDIR = release\ #avoid trailing-slash linebreak +TARGET = fly_land.exe +DESTDIR_TARGET = release\fly_land.exe + +####### Build rules + +first: all +all: Makefile.Release release/fly_land.exe + +release/fly_land.exe: D:/Qt/6.7.0/mingw_64/lib/libQt6QuickWidgets.a D:/Qt/6.7.0/mingw_64/lib/libQt6Location.a D:/Qt/6.7.0/mingw_64/lib/libQt6PositioningQuick.a D:/Qt/6.7.0/mingw_64/lib/libQt6QuickShapes.a D:/Qt/6.7.0/mingw_64/lib/libQt6Quick.a D:/Qt/6.7.0/mingw_64/lib/libQt6OpenGL.a D:/Qt/6.7.0/mingw_64/lib/libQt6MultimediaWidgets.a D:/Qt/6.7.0/mingw_64/lib/libQt6Widgets.a D:/Qt/6.7.0/mingw_64/lib/libQt6Multimedia.a D:/Qt/6.7.0/mingw_64/lib/libQt6Gui.a D:/Qt/6.7.0/mingw_64/lib/libQt6QmlModels.a D:/Qt/6.7.0/mingw_64/lib/libQt6Qml.a D:/Qt/6.7.0/mingw_64/lib/libQt6Network.a D:/Qt/6.7.0/mingw_64/lib/libQt6Positioning.a D:/Qt/6.7.0/mingw_64/lib/libQt6Sql.a D:/Qt/6.7.0/mingw_64/lib/libQt6Core.a D:/Qt/6.7.0/mingw_64/lib/libQt6QmlBuiltins.a D:/Qt/6.7.0/mingw_64/lib/libQt6EntryPoint.a ui_CommunicationUI.h ui_DogControlUI.h ui_GuidingUI.h ui_InjuryAnalysisUI.h ui_InjuryDisplayUI.h ui_UAVControlUI.h $(OBJECTS) + $(LINKER) $(LFLAGS) -o $(DESTDIR_TARGET) @release\object_script.fly_land.Release $(LIBS) + +qmake: FORCE + @$(QMAKE) -o Makefile.Release ..\..\fly_land.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" + +qmake_all: FORCE + +dist: + $(ZIP) fly_land.zip $(SOURCES) $(DIST) ..\..\..\..\fly_land.pro ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\spec_pre.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\device_config.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\common\sanitize.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\common\gcc-base.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\common\g++-base.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\win32\windows_vulkan_sdk.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\common\windows-vulkan.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\common\g++-win32.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\common\windows-desktop.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\qconfig.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_ext_freetype.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_ext_libjpeg.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_ext_libpng.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3danimation.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3danimation_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dcore.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dcore_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dextras.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dextras_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dinput.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dinput_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dlogic.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dlogic_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickanimation.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickanimation_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickextras.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickextras_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickinput.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickinput_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickrender.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickrender_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickscene2d.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3dquickscene2d_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3drender.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_3drender_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_activeqt.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_activeqt_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_axbase_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_axcontainer.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_axcontainer_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_axserver.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_axserver_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_bluetooth.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_bluetooth_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_bodymovin_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_charts.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_charts_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_chartsqml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_chartsqml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_concurrent.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_concurrent_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_core.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_core_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_datavisualization.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_datavisualization_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_datavisualizationqml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_datavisualizationqml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_dbus.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_dbus_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_designer.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_designer_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_designercomponents_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_devicediscovery_support_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_entrypoint_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_example_icons_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_fb_support_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_freetype_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_graphs.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_graphs_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_grpc.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_grpc_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_grpcquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_grpcquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_gui.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_gui_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_harfbuzz_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_help.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_help_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_httpserver.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_httpserver_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_insighttracker.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_insighttracker_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_insighttrackerqml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_insighttrackerqml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_jpeg_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_jsonrpc_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labsanimation.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labsanimation_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labsfolderlistmodel.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labsfolderlistmodel_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labsqmlmodels.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labsqmlmodels_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labssettings.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labssettings_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labssharedimage.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labssharedimage_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labswavefrontmesh.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_labswavefrontmesh_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_languageserver_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_linguist.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_location.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_location_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_multimedia.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_multimedia_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_multimediaquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_multimediawidgets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_multimediawidgets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_network.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_network_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_networkauth.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_networkauth_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_nfc.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_nfc_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_opengl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_opengl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_openglwidgets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_openglwidgets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_packetprotocol_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_pdf.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_pdf_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_pdfquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_pdfquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_pdfwidgets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_pdfwidgets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_png_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_positioning.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_positioning_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_positioningquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_positioningquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_printsupport.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_printsupport_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobuf.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobuf_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobufqtcoretypes.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobufqtcoretypes_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobufqtguitypes.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobufqtguitypes_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobufwellknowntypes.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_protobufwellknowntypes_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qdoccatch_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qdoccatchconversions_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qdoccatchgenerators_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlbuiltins.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlbuiltins_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlcompiler.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlcompiler_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlcore.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlcore_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmldebug_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmldom_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlintegration.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlintegration_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmllocalstorage.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmllocalstorage_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlls_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlmodels.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlmodels_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlnetwork.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlnetwork_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmltest.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmltest_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmltoolingsettings_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmltyperegistrar_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlworkerscript.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlworkerscript_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlxmllistmodel.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_qmlxmllistmodel_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3d.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3d_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dassetimport.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dassetimport_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dassetutils.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dassetutils_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3deffects.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3deffects_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dglslparser_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dhelpers.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dhelpers_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dhelpersimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dhelpersimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3diblbaker.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3diblbaker_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dparticleeffects.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dparticleeffects_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dparticles.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dparticles_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dphysics.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dphysics_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dphysicshelpers.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dphysicshelpers_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3druntimerender.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3druntimerender_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dspatialaudio_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dutils.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick3dutils_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2basic.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2basic_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2basicstyleimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2basicstyleimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2fusion.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2fusion_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2fusionstyleimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2fusionstyleimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2imagine.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2imagine_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2imaginestyleimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2imaginestyleimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2impl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2impl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2material.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2material_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2materialstyleimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2materialstyleimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2universal.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2universal_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2universalstyleimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2universalstyleimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2windowsstyleimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrols2windowsstyleimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickcontrolstestutilsprivate_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickdialogs2.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickdialogs2_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickdialogs2quickimpl.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickdialogs2quickimpl_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickdialogs2utils.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickdialogs2utils_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickeffects_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicklayouts.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicklayouts_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickparticles_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickshapes_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktemplates2.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktemplates2_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktestutilsprivate_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktimeline.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktimeline_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktimelineblendtrees.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quicktimelineblendtrees_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickwidgets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_quickwidgets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_remoteobjects.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_remoteobjects_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_remoteobjectsqml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_remoteobjectsqml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_repparser.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_repparser_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_scxml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_scxml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_scxmlqml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_scxmlqml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_sensors.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_sensors_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_sensorsquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_sensorsquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_serialbus.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_serialbus_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_serialport.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_serialport_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_shadertools.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_shadertools_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_spatialaudio.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_spatialaudio_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_sql.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_sql_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_statemachine.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_statemachine_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_statemachineqml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_statemachineqml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_svg.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_svg_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_svgwidgets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_svgwidgets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_testlib.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_testlib_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_texttospeech.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_texttospeech_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_tools_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_uiplugin.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_uitools.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_uitools_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_virtualkeyboard.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_virtualkeyboard_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_virtualkeyboardsettings.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_virtualkeyboardsettings_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webchannel.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webchannel_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webchannelquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webchannelquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_websockets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_websockets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webview.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webview_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webviewquick.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_webviewquick_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_widgets.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_widgets_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_xml.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_xml_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\modules\qt_lib_zlib_private.pri ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\qt_functions.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\qt_config.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\win32-g++\qmake.conf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\spec_post.prf .qmake.stash ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\exclusive_builds.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\toolchain.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\default_pre.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\win32\default_pre.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\resolve_config.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\exclusive_builds_post.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\default_post.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\build_pass.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\qml_debug.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\precompile_header.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\warn_on.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\permissions.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\qt.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\resources_functions.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\resources.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\moc.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\win32\opengl.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\uic.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\qmake_use.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\file_copies.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\win32\windows.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\testcase_targets.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\exceptions.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\yacc.prf ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\lex.prf ..\..\fly_land.pro ..\..\Resource.qrc ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6QuickWidgets.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Location.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6PositioningQuick.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6QuickShapes.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Quick.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6OpenGL.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6MultimediaWidgets.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Widgets.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Multimedia.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Gui.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6QmlModels.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Qml.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Network.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Positioning.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Sql.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6Core.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6QmlBuiltins.prl ..\..\..\..\Qt\6.7.0\mingw_64\lib\Qt6EntryPoint.prl ..\..\Resource.qrc ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\data\dummy.cpp ..\..\CommunicationUI.h ..\..\DogControlUI.h ..\..\GuidingUI.h ..\..\InjuryAnalysisUI.h ..\..\InjuryDatabase.h ..\..\InjuryDisplayUI.h ..\..\UAVControlUI.h ..\..\CommunicationUI.cpp ..\..\DogControlUI.cpp ..\..\GuidingUI.cpp ..\..\InjuryAnalysisUI.cpp ..\..\InjuryDatabase.cpp ..\..\InjuryDisplayUI.cpp ..\..\UAVControlUI.cpp ..\..\main.cpp ..\..\CommunicationUI.ui ..\..\DogControlUI.ui ..\..\GuidingUI.ui ..\..\InjuryAnalysisUI.ui ..\..\InjuryDisplayUI.ui ..\..\UAVControlUI.ui + +clean: compiler_clean + -$(DEL_FILE) release\CommunicationUI.o release\DogControlUI.o release\GuidingUI.o release\InjuryAnalysisUI.o release\InjuryDatabase.o release\InjuryDisplayUI.o release\UAVControlUI.o release\main.o release\qrc_Resource.o release\moc_CommunicationUI.o release\moc_DogControlUI.o release\moc_GuidingUI.o release\moc_InjuryAnalysisUI.o release\moc_InjuryDisplayUI.o release\moc_UAVControlUI.o + +distclean: clean + -$(DEL_FILE) .qmake.stash + -$(DEL_FILE) $(DESTDIR_TARGET) + -$(DEL_FILE) Makefile.Release + +mocclean: compiler_moc_header_clean compiler_moc_objc_header_clean compiler_moc_source_clean + +mocables: compiler_moc_header_make_all compiler_moc_objc_header_make_all compiler_moc_source_make_all + +check: first + +benchmark: first + +compiler_no_pch_compiler_make_all: +compiler_no_pch_compiler_clean: +compiler_rcc_make_all: release/qrc_Resource.cpp +compiler_rcc_clean: + -$(DEL_FILE) release\qrc_Resource.cpp +release/qrc_Resource.cpp: ../../Resource.qrc \ + ../../../../Qt/6.7.0/mingw_64/bin/rcc.exe \ + ../../map.qml + D:\Qt\6.7.0\mingw_64\bin\rcc.exe -name Resource --no-zstd ..\..\Resource.qrc -o release\qrc_Resource.cpp + +compiler_moc_predefs_make_all: release/moc_predefs.h +compiler_moc_predefs_clean: + -$(DEL_FILE) release\moc_predefs.h +release/moc_predefs.h: ../../../../Qt/6.7.0/mingw_64/mkspecs/features/data/dummy.cpp + g++ -fno-keep-inline-dllexport -O2 -std=gnu++1z -Wall -Wextra -Wextra -dM -E -o release\moc_predefs.h ..\..\..\..\Qt\6.7.0\mingw_64\mkspecs\features\data\dummy.cpp + +compiler_moc_header_make_all: release/moc_CommunicationUI.cpp release/moc_DogControlUI.cpp release/moc_GuidingUI.cpp release/moc_InjuryAnalysisUI.cpp release/moc_InjuryDisplayUI.cpp release/moc_UAVControlUI.cpp +compiler_moc_header_clean: + -$(DEL_FILE) release\moc_CommunicationUI.cpp release\moc_DogControlUI.cpp release\moc_GuidingUI.cpp release\moc_InjuryAnalysisUI.cpp release\moc_InjuryDisplayUI.cpp release\moc_UAVControlUI.cpp +release/moc_CommunicationUI.cpp: ../../CommunicationUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + release/mocinclude.opt \ + release/moc_predefs.h \ + ../../../../Qt/6.7.0/mingw_64/bin/moc.exe + D:\Qt\6.7.0\mingw_64\bin\moc.exe $(DEFINES) --include D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/release/moc_predefs.h @release/mocinclude.opt ..\..\CommunicationUI.h -o release\moc_CommunicationUI.cpp + +release/moc_DogControlUI.cpp: ../../DogControlUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + release/mocinclude.opt \ + release/moc_predefs.h \ + ../../../../Qt/6.7.0/mingw_64/bin/moc.exe + D:\Qt\6.7.0\mingw_64\bin\moc.exe $(DEFINES) --include D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/release/moc_predefs.h @release/mocinclude.opt ..\..\DogControlUI.h -o release\moc_DogControlUI.cpp + +release/moc_GuidingUI.cpp: ../../GuidingUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + release/mocinclude.opt \ + release/moc_predefs.h \ + ../../../../Qt/6.7.0/mingw_64/bin/moc.exe + D:\Qt\6.7.0\mingw_64\bin\moc.exe $(DEFINES) --include D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/release/moc_predefs.h @release/mocinclude.opt ..\..\GuidingUI.h -o release\moc_GuidingUI.cpp + +release/moc_InjuryAnalysisUI.cpp: ../../InjuryAnalysisUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + release/mocinclude.opt \ + release/moc_predefs.h \ + ../../../../Qt/6.7.0/mingw_64/bin/moc.exe + D:\Qt\6.7.0\mingw_64\bin\moc.exe $(DEFINES) --include D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/release/moc_predefs.h @release/mocinclude.opt ..\..\InjuryAnalysisUI.h -o release\moc_InjuryAnalysisUI.cpp + +release/moc_InjuryDisplayUI.cpp: ../../InjuryDisplayUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + release/mocinclude.opt \ + release/moc_predefs.h \ + ../../../../Qt/6.7.0/mingw_64/bin/moc.exe + D:\Qt\6.7.0\mingw_64\bin\moc.exe $(DEFINES) --include D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/release/moc_predefs.h @release/mocinclude.opt ..\..\InjuryDisplayUI.h -o release\moc_InjuryDisplayUI.cpp + +release/moc_UAVControlUI.cpp: ../../UAVControlUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + release/mocinclude.opt \ + release/moc_predefs.h \ + ../../../../Qt/6.7.0/mingw_64/bin/moc.exe + D:\Qt\6.7.0\mingw_64\bin\moc.exe $(DEFINES) --include D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/release/moc_predefs.h @release/mocinclude.opt ..\..\UAVControlUI.h -o release\moc_UAVControlUI.cpp + +compiler_moc_objc_header_make_all: +compiler_moc_objc_header_clean: +compiler_moc_source_make_all: +compiler_moc_source_clean: +compiler_uic_make_all: ui_CommunicationUI.h ui_DogControlUI.h ui_GuidingUI.h ui_InjuryAnalysisUI.h ui_InjuryDisplayUI.h ui_UAVControlUI.h +compiler_uic_clean: + -$(DEL_FILE) ui_CommunicationUI.h ui_DogControlUI.h ui_GuidingUI.h ui_InjuryAnalysisUI.h ui_InjuryDisplayUI.h ui_UAVControlUI.h +ui_CommunicationUI.h: ../../CommunicationUI.ui \ + ../../../../Qt/6.7.0/mingw_64/bin/uic.exe + D:\Qt\6.7.0\mingw_64\bin\uic.exe ..\..\CommunicationUI.ui -o ui_CommunicationUI.h + +ui_DogControlUI.h: ../../DogControlUI.ui \ + ../../../../Qt/6.7.0/mingw_64/bin/uic.exe + D:\Qt\6.7.0\mingw_64\bin\uic.exe ..\..\DogControlUI.ui -o ui_DogControlUI.h + +ui_GuidingUI.h: ../../GuidingUI.ui \ + ../../../../Qt/6.7.0/mingw_64/bin/uic.exe + D:\Qt\6.7.0\mingw_64\bin\uic.exe ..\..\GuidingUI.ui -o ui_GuidingUI.h + +ui_InjuryAnalysisUI.h: ../../InjuryAnalysisUI.ui \ + ../../../../Qt/6.7.0/mingw_64/bin/uic.exe + D:\Qt\6.7.0\mingw_64\bin\uic.exe ..\..\InjuryAnalysisUI.ui -o ui_InjuryAnalysisUI.h + +ui_InjuryDisplayUI.h: ../../InjuryDisplayUI.ui \ + ../../../../Qt/6.7.0/mingw_64/bin/uic.exe \ + ../../../../Qt/6.7.0/mingw_64/include/QtQuickWidgets/QQuickWidget + D:\Qt\6.7.0\mingw_64\bin\uic.exe ..\..\InjuryDisplayUI.ui -o ui_InjuryDisplayUI.h + +ui_UAVControlUI.h: ../../UAVControlUI.ui \ + ../../../../Qt/6.7.0/mingw_64/bin/uic.exe + D:\Qt\6.7.0\mingw_64\bin\uic.exe ..\..\UAVControlUI.ui -o ui_UAVControlUI.h + +compiler_yacc_decl_make_all: +compiler_yacc_decl_clean: +compiler_yacc_impl_make_all: +compiler_yacc_impl_clean: +compiler_lex_make_all: +compiler_lex_clean: +compiler_clean: compiler_rcc_clean compiler_moc_predefs_clean compiler_moc_header_clean compiler_uic_clean + + + +####### Compile + +release/CommunicationUI.o: ../../CommunicationUI.cpp ../../CommunicationUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ui_CommunicationUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QApplication \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/QMediaPlayer \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qmediaplayer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimediaglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimedia-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimediaexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qmediaenumdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetaobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtaudio.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qaudio.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/QVideoWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qvideowidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qtmultimediawidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qtmultimediawidgetsexports.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\CommunicationUI.o ..\..\CommunicationUI.cpp + +release/DogControlUI.o: ../../DogControlUI.cpp ../../DogControlUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ui_DogControlUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QApplication \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/QMediaPlayer \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qmediaplayer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimediaglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimedia-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimediaexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qmediaenumdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetaobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtaudio.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qaudio.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/QVideoWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qvideowidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qtmultimediawidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qtmultimediawidgetsexports.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\DogControlUI.o ..\..\DogControlUI.cpp + +release/GuidingUI.o: ../../GuidingUI.cpp ../../GuidingUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ui_GuidingUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QApplication \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QPushButton \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qpushbutton.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractbutton.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QVBoxLayout \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qboxlayout.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qlayout.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qlayoutitem.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qgridlayout.h \ + ../../DogControlUI.h \ + ../../UAVControlUI.h \ + ../../CommunicationUI.h \ + ../../InjuryDisplayUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QMessageBox \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qmessagebox.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qdialog.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qdialogbuttonbox.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\GuidingUI.o ..\..\GuidingUI.cpp + +release/InjuryAnalysisUI.o: ../../InjuryAnalysisUI.cpp ../../InjuryAnalysisUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ui_InjuryAnalysisUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QApplication \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QLabel \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qlabel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qframe.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpicture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtextdocument.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\InjuryAnalysisUI.o ..\..\InjuryAnalysisUI.cpp + +release/InjuryDatabase.o: ../../InjuryDatabase.cpp ../../InjuryDatabase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QtSql \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QtSqlDepends \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QtCore \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QtCoreDepends \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20algorithm.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20chrono.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20iterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20map.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20vector.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstracteventdispatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractitemmodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractnativeeventfilter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanimationgroup.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qapplicationstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QMutex \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassociativeiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomicscopedvaluerollback.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasictimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbitarray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbuffer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraymatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcalendar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborarray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborvalue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatetime.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborcommon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qregularexpression.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/quuid.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcbormap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborstreamreader.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborstreamwriter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcollator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcommandlineoption.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcommandlineparser.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconcatenatetablesproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcryptographichash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdir.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfiledevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfileinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtimezone.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdiriterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeasingcurve.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfactoryinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfileselector.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QStringList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfilesystemwatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuturesynchronizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuturewatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qidentityproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qitemselectionmodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsonarray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsonvalue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsondocument.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsonobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlibrary.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlibraryinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversionnumber.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtyperevision.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlockfile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qloggingcategory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmessageauthenticationcode.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetaobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmimedata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmimedatabase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmimetype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectcleanuphandler.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoperatingsystemversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qparallelanimationgroup.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpauseanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpermissions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qplugin.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpluginloader.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocess.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qproperty.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpropertyprivate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpropertyanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariantanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qqueue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrandom.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qreadwritelock.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsavefile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedvaluerollback.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsemaphore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsequentialanimationgroup.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsequentialiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsettings.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedmemory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtipccommon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsignalmapper.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsimd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsocketnotifier.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsortfilterproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qspan.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstack.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstandardpaths.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstaticlatin1stringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstorageinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlistmodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemsemaphore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtemporarydir.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtemporaryfile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextboundaryfinder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtimeline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtranslator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtransposeproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsymbolmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurlquery.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarianthash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QHash \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QString \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariantlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariantmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QMap \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvector.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qwaitcondition.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QDeadlineTimer \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qwineventnotifier.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxmlstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxpfunctional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsqlglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsql-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsqlexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqldatabase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqldriver.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqldriverplugin.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlerror.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlfield.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlindex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlrecord.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlquery.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlquerymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlrelationaldelegate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qstyleditemdelegate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemdelegate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qstyleoption.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractspinbox.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvalidator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qslider.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractslider.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qstyle.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtabbar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtabwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qrubberband.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qframe.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qlistview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractscrollarea.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qcombobox.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlrelationaltablemodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqltablemodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlresult.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsqlversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QSqlQuery \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QSqlDatabase \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QSqlRecord \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QDebug + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\InjuryDatabase.o ..\..\InjuryDatabase.cpp + +release/InjuryDisplayUI.o: ../../InjuryDisplayUI.cpp ../../InjuryDisplayUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ui_InjuryDisplayUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuickWidgets/QQuickWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuickWidgets/qquickwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qquickwindow.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qtquickglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qtqmlglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qtqml-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtNetwork/qtnetworkglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtNetwork/qtnetwork-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtNetwork/qtnetworkexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qtqmlexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qtquick-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qtquickexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qsgrendererinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qsgnode.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qsggeometry.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRectF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QMatrix4x4 \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qmatrix4x4.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector3d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector4d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qquaternion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qgenericmatrix.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindow.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QEvent \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QMargins \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qsurface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qsurfaceformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqml.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlprivate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qjsprimitivevalue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qjsnumbercoercion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qjsvalue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmllist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlparserstatus.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlpropertyvaluesource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatetime.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcalendar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetaobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversionnumber.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtyperevision.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlregistration.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQmlIntegration/qqmlintegration.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmldebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlerror.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuickWidgets/qtquickwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuickWidgets/qtquickwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QApplication \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QPushButton \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qpushbutton.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractbutton.h \ + ../../InjuryAnalysisUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/QQuickItem \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQuick/qquickitem.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtQml/qqmlcomponent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qproperty.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpropertyprivate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaccessible.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaccessible_base.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\InjuryDisplayUI.o ..\..\InjuryDisplayUI.cpp + +release/UAVControlUI.o: ../../UAVControlUI.cpp ../../UAVControlUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ui_UAVControlUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QApplication \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/QMediaPlayer \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qmediaplayer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimediaglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimedia-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtmultimediaexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qmediaenumdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetaobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qtaudio.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimedia/qaudio.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/QVideoWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qvideowidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qtmultimediawidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtMultimediaWidgets/qtmultimediawidgetsexports.h + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\UAVControlUI.o ..\..\UAVControlUI.cpp + +release/main.o: ../../main.cpp ../../GuidingUI.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/QWidget \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversionchecks.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfiginclude.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconfig.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcore-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtconfigmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompilerdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemdetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocessordetection.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassert.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtnoop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypes.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtypeinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsysinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlogging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qflags.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasicatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qgenericatomic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qyieldcpu.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconstructormacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexceptionhandling.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qforeach.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttypetraits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qglobalstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmalloc.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qminmax.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnumeric.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoverload.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qswap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qttranslation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversiontagging.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtgui-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtguiexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnamespace.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtmetamacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstring.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qchar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrefcount.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpair.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydatapointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qarraydataops.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxptype_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20memory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearrayview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringfwd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20type_traits.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringliteral.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanystringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qutf8stringview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringtokenizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringbuilder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringconverter_base.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhashfunctions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraylist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qalgorithms.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetatype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcompare.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcomparehelpers.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatastream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevicebase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfloat16.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmath.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetacontainer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontainerinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtaggedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopeguard.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobject_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbindingstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmargins.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23utility.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qaction.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qkeysequence.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qicon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsize.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpaintdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrect.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcolor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgb.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qrgba64.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qimage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpixelformat.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qtransform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpolygon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qregion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariant.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdebug.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcontiguouscache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qshareddata_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qset.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qhash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarlengtharray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpalette.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbrush.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfont.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qendian.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontmetrics.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qfontinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qcursor.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qbitmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qevent.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qiodevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qeventpoint.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvector2d.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvectornd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qpointingdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputdevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QObject \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QRect \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSize \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QSizeF \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/QTransform \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qnativeinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qscreen_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdeadlinetimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qelapsedtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeventloop.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcoreapplication_platform.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfutureinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmutex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsan_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresultstore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuture_impl.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadpool.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthread.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrunnable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qexception.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpromise.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qinputmethod.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlocale.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qguiapplication_platform.h \ + ../../InjuryDatabase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QtSql \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QtSqlDepends \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QtCore \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QtCoreDepends \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20algorithm.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20chrono.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20iterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20map.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q20vector.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/q23functional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstracteventdispatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractitemmodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractnativeeventfilter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qabstractproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qanimationgroup.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qapplicationstatic.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QMutex \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qassociativeiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qatomicscopedvaluerollback.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbasictimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbitarray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbuffer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qbytearraymatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcache.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcalendar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborarray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborvalue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdatetime.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborcommon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qregularexpression.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/quuid.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcbormap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborstreamreader.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcborstreamwriter.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcollator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcommandlineoption.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcommandlineparser.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qconcatenatetablesproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qcryptographichash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdir.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfiledevice.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfileinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtimezone.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qdiriterator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qeasingcurve.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfactoryinterface.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfileselector.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QStringList \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfilesystemwatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuturesynchronizer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qfuturewatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qidentityproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qitemselectionmodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsonarray.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsonvalue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsondocument.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qjsonobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlatin1stringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlibrary.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlibraryinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qversionnumber.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtyperevision.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qlockfile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qloggingcategory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmessageauthenticationcode.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmetaobject.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmimedata.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmimedatabase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qmimetype.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qobjectcleanuphandler.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qoperatingsystemversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qparallelanimationgroup.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpauseanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpermissions.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qplugin.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpointer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpluginloader.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qprocess.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qproperty.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpropertyprivate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qpropertyanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariantanimation.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qqueue.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qrandom.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qreadwritelock.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qresource.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsavefile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qscopedvaluerollback.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsemaphore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsequentialanimationgroup.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsequentialiterable.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsettings.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsharedmemory.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtipccommon.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsignalmapper.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsimd.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsocketnotifier.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsortfilterproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qspan.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstack.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstandardpaths.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstaticlatin1stringmatcher.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstorageinfo.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qstringlistmodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qsystemsemaphore.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtcoreversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtemporarydir.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtemporaryfile.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtextboundaryfinder.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qthreadstorage.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtimeline.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtimer.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtranslator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtransposeproxymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qtsymbolmacros.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qurlquery.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvarianthash.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QHash \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QVariant \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QString \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariantlist.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvariantmap.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QMap \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qvector.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qwaitcondition.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QDeadlineTimer \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qwineventnotifier.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxmlstream.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/qxpfunctional.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsqlglobal.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsql-config.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsqlexports.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqldatabase.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqldriver.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqldriverplugin.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlerror.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlfield.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlindex.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlrecord.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlquery.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlquerymodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlrelationaldelegate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qstyleditemdelegate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemdelegate.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qstyleoption.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractspinbox.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtGui/qvalidator.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qslider.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractslider.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qstyle.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtabbar.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qtabwidget.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qrubberband.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qframe.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qlistview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractitemview.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qabstractscrollarea.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtWidgets/qcombobox.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlrelationaltablemodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqltablemodel.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qsqlresult.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/qtsqlversion.h \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QSqlQuery \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QSqlDatabase \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtSql/QSqlRecord \ + ../../../../../../Qt/6.7.0/mingw_64/include/QtCore/QDebug + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\main.o ..\..\main.cpp + +release/qrc_Resource.o: release/qrc_Resource.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\qrc_Resource.o release\qrc_Resource.cpp + +release/moc_CommunicationUI.o: release/moc_CommunicationUI.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_CommunicationUI.o release\moc_CommunicationUI.cpp + +release/moc_DogControlUI.o: release/moc_DogControlUI.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_DogControlUI.o release\moc_DogControlUI.cpp + +release/moc_GuidingUI.o: release/moc_GuidingUI.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_GuidingUI.o release\moc_GuidingUI.cpp + +release/moc_InjuryAnalysisUI.o: release/moc_InjuryAnalysisUI.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_InjuryAnalysisUI.o release\moc_InjuryAnalysisUI.cpp + +release/moc_InjuryDisplayUI.o: release/moc_InjuryDisplayUI.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_InjuryDisplayUI.o release\moc_InjuryDisplayUI.cpp + +release/moc_UAVControlUI.o: release/moc_UAVControlUI.cpp + $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_UAVControlUI.o release\moc_UAVControlUI.cpp + +####### Install + +install: FORCE + +uninstall: FORCE + +FORCE: + +.SUFFIXES: + diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/CommunicationUI.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/CommunicationUI.o new file mode 100644 index 0000000..eec4ac1 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/CommunicationUI.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/DogControlUI.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/DogControlUI.o new file mode 100644 index 0000000..ed4f407 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/DogControlUI.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/GuidingUI.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/GuidingUI.o new file mode 100644 index 0000000..a914a94 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/GuidingUI.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/InjuryAnalysisUI.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/InjuryAnalysisUI.o new file mode 100644 index 0000000..d2d4074 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/InjuryAnalysisUI.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/InjuryDatabase.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/InjuryDatabase.o new file mode 100644 index 0000000..f8f86b3 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/InjuryDatabase.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/InjuryDisplayUI.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/InjuryDisplayUI.o new file mode 100644 index 0000000..b88a57f Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/InjuryDisplayUI.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/UAVControlUI.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/UAVControlUI.o new file mode 100644 index 0000000..e913855 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/UAVControlUI.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/fly_land.exe b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/fly_land.exe new file mode 100644 index 0000000..859b918 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/fly_land.exe differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/main.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/main.o new file mode 100644 index 0000000..2fad9ea Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/main.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_CommunicationUI.cpp b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_CommunicationUI.cpp new file mode 100644 index 0000000..be92a7a --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_CommunicationUI.cpp @@ -0,0 +1,100 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'CommunicationUI.h' +** +** Created by: The Qt Meta Object Compiler version 68 (Qt 6.7.0) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../CommunicationUI.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'CommunicationUI.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 68 +#error "This file was generated using the moc from 6.7.0. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { + +#ifdef QT_MOC_HAS_STRINGDATA +struct qt_meta_stringdata_CLASSCommunicationUIENDCLASS_t {}; +constexpr auto qt_meta_stringdata_CLASSCommunicationUIENDCLASS = QtMocHelpers::stringData( + "CommunicationUI" +); +#else // !QT_MOC_HAS_STRINGDATA +#error "qtmochelpers.h not found or too old." +#endif // !QT_MOC_HAS_STRINGDATA +} // unnamed namespace + +Q_CONSTINIT static const uint qt_meta_data_CLASSCommunicationUIENDCLASS[] = { + + // content: + 12, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +Q_CONSTINIT const QMetaObject CommunicationUI::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_CLASSCommunicationUIENDCLASS.offsetsAndSizes, + qt_meta_data_CLASSCommunicationUIENDCLASS, + qt_static_metacall, + nullptr, + qt_incomplete_metaTypeArray + >, + nullptr +} }; + +void CommunicationUI::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +const QMetaObject *CommunicationUI::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *CommunicationUI::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_CLASSCommunicationUIENDCLASS.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int CommunicationUI::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_CommunicationUI.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_CommunicationUI.o new file mode 100644 index 0000000..222fce7 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_CommunicationUI.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_DogControlUI.cpp b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_DogControlUI.cpp new file mode 100644 index 0000000..46fc842 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_DogControlUI.cpp @@ -0,0 +1,100 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'DogControlUI.h' +** +** Created by: The Qt Meta Object Compiler version 68 (Qt 6.7.0) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../DogControlUI.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'DogControlUI.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 68 +#error "This file was generated using the moc from 6.7.0. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { + +#ifdef QT_MOC_HAS_STRINGDATA +struct qt_meta_stringdata_CLASSDogControlUIENDCLASS_t {}; +constexpr auto qt_meta_stringdata_CLASSDogControlUIENDCLASS = QtMocHelpers::stringData( + "DogControlUI" +); +#else // !QT_MOC_HAS_STRINGDATA +#error "qtmochelpers.h not found or too old." +#endif // !QT_MOC_HAS_STRINGDATA +} // unnamed namespace + +Q_CONSTINIT static const uint qt_meta_data_CLASSDogControlUIENDCLASS[] = { + + // content: + 12, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +Q_CONSTINIT const QMetaObject DogControlUI::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_CLASSDogControlUIENDCLASS.offsetsAndSizes, + qt_meta_data_CLASSDogControlUIENDCLASS, + qt_static_metacall, + nullptr, + qt_incomplete_metaTypeArray + >, + nullptr +} }; + +void DogControlUI::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +const QMetaObject *DogControlUI::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *DogControlUI::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_CLASSDogControlUIENDCLASS.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int DogControlUI::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_DogControlUI.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_DogControlUI.o new file mode 100644 index 0000000..c6e778b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_DogControlUI.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_GuidingUI.cpp b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_GuidingUI.cpp new file mode 100644 index 0000000..dbd4f5a --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_GuidingUI.cpp @@ -0,0 +1,144 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'GuidingUI.h' +** +** Created by: The Qt Meta Object Compiler version 68 (Qt 6.7.0) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../GuidingUI.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'GuidingUI.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 68 +#error "This file was generated using the moc from 6.7.0. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { + +#ifdef QT_MOC_HAS_STRINGDATA +struct qt_meta_stringdata_CLASSGuidingUIENDCLASS_t {}; +constexpr auto qt_meta_stringdata_CLASSGuidingUIENDCLASS = QtMocHelpers::stringData( + "GuidingUI", + "on_Communication_clicked", + "", + "on_ControlDog_clicked", + "on_ControlUAV_clicked", + "on_InjuryDisplay_clicked" +); +#else // !QT_MOC_HAS_STRINGDATA +#error "qtmochelpers.h not found or too old." +#endif // !QT_MOC_HAS_STRINGDATA +} // unnamed namespace + +Q_CONSTINIT static const uint qt_meta_data_CLASSGuidingUIENDCLASS[] = { + + // content: + 12, // revision + 0, // classname + 0, 0, // classinfo + 4, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags, initial metatype offsets + 1, 0, 38, 2, 0x08, 1 /* Private */, + 3, 0, 39, 2, 0x08, 2 /* Private */, + 4, 0, 40, 2, 0x08, 3 /* Private */, + 5, 0, 41, 2, 0x08, 4 /* Private */, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + + 0 // eod +}; + +Q_CONSTINIT const QMetaObject GuidingUI::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_CLASSGuidingUIENDCLASS.offsetsAndSizes, + qt_meta_data_CLASSGuidingUIENDCLASS, + qt_static_metacall, + nullptr, + qt_incomplete_metaTypeArray, + // method 'on_Communication_clicked' + QtPrivate::TypeAndForceComplete, + // method 'on_ControlDog_clicked' + QtPrivate::TypeAndForceComplete, + // method 'on_ControlUAV_clicked' + QtPrivate::TypeAndForceComplete, + // method 'on_InjuryDisplay_clicked' + QtPrivate::TypeAndForceComplete + >, + nullptr +} }; + +void GuidingUI::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_Communication_clicked(); break; + case 1: _t->on_ControlDog_clicked(); break; + case 2: _t->on_ControlUAV_clicked(); break; + case 3: _t->on_InjuryDisplay_clicked(); break; + default: ; + } + } + (void)_a; +} + +const QMetaObject *GuidingUI::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *GuidingUI::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_CLASSGuidingUIENDCLASS.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int GuidingUI::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 4) + qt_static_metacall(this, _c, _id, _a); + _id -= 4; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 4) + *reinterpret_cast(_a[0]) = QMetaType(); + _id -= 4; + } + return _id; +} +QT_WARNING_POP diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_GuidingUI.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_GuidingUI.o new file mode 100644 index 0000000..9a8302b Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_GuidingUI.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_InjuryAnalysisUI.cpp b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_InjuryAnalysisUI.cpp new file mode 100644 index 0000000..b1e725f --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_InjuryAnalysisUI.cpp @@ -0,0 +1,100 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'InjuryAnalysisUI.h' +** +** Created by: The Qt Meta Object Compiler version 68 (Qt 6.7.0) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../InjuryAnalysisUI.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'InjuryAnalysisUI.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 68 +#error "This file was generated using the moc from 6.7.0. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { + +#ifdef QT_MOC_HAS_STRINGDATA +struct qt_meta_stringdata_CLASSInjuryAnalysisUIENDCLASS_t {}; +constexpr auto qt_meta_stringdata_CLASSInjuryAnalysisUIENDCLASS = QtMocHelpers::stringData( + "InjuryAnalysisUI" +); +#else // !QT_MOC_HAS_STRINGDATA +#error "qtmochelpers.h not found or too old." +#endif // !QT_MOC_HAS_STRINGDATA +} // unnamed namespace + +Q_CONSTINIT static const uint qt_meta_data_CLASSInjuryAnalysisUIENDCLASS[] = { + + // content: + 12, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +Q_CONSTINIT const QMetaObject InjuryAnalysisUI::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_CLASSInjuryAnalysisUIENDCLASS.offsetsAndSizes, + qt_meta_data_CLASSInjuryAnalysisUIENDCLASS, + qt_static_metacall, + nullptr, + qt_incomplete_metaTypeArray + >, + nullptr +} }; + +void InjuryAnalysisUI::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +const QMetaObject *InjuryAnalysisUI::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *InjuryAnalysisUI::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_CLASSInjuryAnalysisUIENDCLASS.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int InjuryAnalysisUI::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_InjuryAnalysisUI.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_InjuryAnalysisUI.o new file mode 100644 index 0000000..daac207 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_InjuryAnalysisUI.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_InjuryDisplayUI.cpp b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_InjuryDisplayUI.cpp new file mode 100644 index 0000000..9736286 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_InjuryDisplayUI.cpp @@ -0,0 +1,132 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'InjuryDisplayUI.h' +** +** Created by: The Qt Meta Object Compiler version 68 (Qt 6.7.0) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../InjuryDisplayUI.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'InjuryDisplayUI.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 68 +#error "This file was generated using the moc from 6.7.0. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { + +#ifdef QT_MOC_HAS_STRINGDATA +struct qt_meta_stringdata_CLASSInjuryDisplayUIENDCLASS_t {}; +constexpr auto qt_meta_stringdata_CLASSInjuryDisplayUIENDCLASS = QtMocHelpers::stringData( + "InjuryDisplayUI", + "on_InjuryAnaysis_clicked", + "", + "on_MapButton_clicked" +); +#else // !QT_MOC_HAS_STRINGDATA +#error "qtmochelpers.h not found or too old." +#endif // !QT_MOC_HAS_STRINGDATA +} // unnamed namespace + +Q_CONSTINIT static const uint qt_meta_data_CLASSInjuryDisplayUIENDCLASS[] = { + + // content: + 12, // revision + 0, // classname + 0, 0, // classinfo + 2, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags, initial metatype offsets + 1, 0, 26, 2, 0x08, 1 /* Private */, + 3, 0, 27, 2, 0x08, 2 /* Private */, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, + + 0 // eod +}; + +Q_CONSTINIT const QMetaObject InjuryDisplayUI::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_CLASSInjuryDisplayUIENDCLASS.offsetsAndSizes, + qt_meta_data_CLASSInjuryDisplayUIENDCLASS, + qt_static_metacall, + nullptr, + qt_incomplete_metaTypeArray, + // method 'on_InjuryAnaysis_clicked' + QtPrivate::TypeAndForceComplete, + // method 'on_MapButton_clicked' + QtPrivate::TypeAndForceComplete + >, + nullptr +} }; + +void InjuryDisplayUI::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_InjuryAnaysis_clicked(); break; + case 1: _t->on_MapButton_clicked(); break; + default: ; + } + } + (void)_a; +} + +const QMetaObject *InjuryDisplayUI::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *InjuryDisplayUI::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_CLASSInjuryDisplayUIENDCLASS.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int InjuryDisplayUI::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 2) + qt_static_metacall(this, _c, _id, _a); + _id -= 2; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 2) + *reinterpret_cast(_a[0]) = QMetaType(); + _id -= 2; + } + return _id; +} +QT_WARNING_POP diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_InjuryDisplayUI.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_InjuryDisplayUI.o new file mode 100644 index 0000000..8894fd4 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_InjuryDisplayUI.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_UAVControlUI.cpp b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_UAVControlUI.cpp new file mode 100644 index 0000000..1826781 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_UAVControlUI.cpp @@ -0,0 +1,100 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'UAVControlUI.h' +** +** Created by: The Qt Meta Object Compiler version 68 (Qt 6.7.0) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../UAVControlUI.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'UAVControlUI.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 68 +#error "This file was generated using the moc from 6.7.0. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { + +#ifdef QT_MOC_HAS_STRINGDATA +struct qt_meta_stringdata_CLASSUAVControlUIENDCLASS_t {}; +constexpr auto qt_meta_stringdata_CLASSUAVControlUIENDCLASS = QtMocHelpers::stringData( + "UAVControlUI" +); +#else // !QT_MOC_HAS_STRINGDATA +#error "qtmochelpers.h not found or too old." +#endif // !QT_MOC_HAS_STRINGDATA +} // unnamed namespace + +Q_CONSTINIT static const uint qt_meta_data_CLASSUAVControlUIENDCLASS[] = { + + // content: + 12, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +Q_CONSTINIT const QMetaObject UAVControlUI::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_CLASSUAVControlUIENDCLASS.offsetsAndSizes, + qt_meta_data_CLASSUAVControlUIENDCLASS, + qt_static_metacall, + nullptr, + qt_incomplete_metaTypeArray + >, + nullptr +} }; + +void UAVControlUI::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +const QMetaObject *UAVControlUI::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *UAVControlUI::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_CLASSUAVControlUIENDCLASS.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int UAVControlUI::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_UAVControlUI.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_UAVControlUI.o new file mode 100644 index 0000000..2dd0e64 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_UAVControlUI.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_predefs.h b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_predefs.h new file mode 100644 index 0000000..edd12fd --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_predefs.h @@ -0,0 +1,440 @@ +#define __DBL_MIN_EXP__ (-1021) +#define __cpp_attributes 200809L +#define __cpp_nontype_template_parameter_auto 201606L +#define __UINT_LEAST16_MAX__ 0xffff +#define __ATOMIC_ACQUIRE 2 +#define __FLT128_MAX_10_EXP__ 4932 +#define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F +#define __GCC_IEC_559_COMPLEX 2 +#define __cpp_aggregate_nsdmi 201304L +#define __UINT_LEAST8_TYPE__ unsigned char +#define __SIZEOF_FLOAT80__ 16 +#define __INTMAX_C(c) c ## LL +#define __CHAR_BIT__ 8 +#define __MINGW32__ 1 +#define __UINT8_MAX__ 0xff +#define __SCHAR_WIDTH__ 8 +#define _WIN64 1 +#define __WINT_MAX__ 0xffff +#define __FLT32_MIN_EXP__ (-125) +#define __cpp_static_assert 201411L +#define __ORDER_LITTLE_ENDIAN__ 1234 +#define __SIZE_MAX__ 0xffffffffffffffffULL +#define __WCHAR_MAX__ 0xffff +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 +#define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L) +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 +#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 +#define __GCC_IEC_559 2 +#define __FLT32X_DECIMAL_DIG__ 17 +#define __FLT_EVAL_METHOD__ 0 +#define __cpp_binary_literals 201304L +#define __FLT64_DECIMAL_DIG__ 17 +#define __cpp_noexcept_function_type 201510L +#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 +#define __cpp_variadic_templates 200704L +#define __UINT_FAST64_MAX__ 0xffffffffffffffffULL +#define __SIG_ATOMIC_TYPE__ int +#define __DBL_MIN_10_EXP__ (-307) +#define __FINITE_MATH_ONLY__ 0 +#define __cpp_variable_templates 201304L +#define __FLT32X_MAX_EXP__ 1024 +#define __FLT32_HAS_DENORM__ 1 +#define __UINT_FAST8_MAX__ 0xff +#define __cpp_rvalue_reference 200610L +#define __cpp_nested_namespace_definitions 201411L +#define _stdcall __attribute__((__stdcall__)) +#define __DEC64_MAX_EXP__ 385 +#define __INT8_C(c) c +#define __INT_LEAST8_WIDTH__ 8 +#define __cpp_variadic_using 201611L +#define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL +#define __INT_LEAST8_MAX__ 0x7f +#define __cpp_capture_star_this 201603L +#define __SHRT_MAX__ 0x7fff +#define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __FLT64X_MAX_10_EXP__ 4932 +#define __cpp_if_constexpr 201606L +#define __LDBL_IS_IEC_60559__ 2 +#define __FLT64X_HAS_QUIET_NAN__ 1 +#define __UINT_LEAST8_MAX__ 0xff +#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 +#define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 +#define __UINTMAX_TYPE__ long long unsigned int +#define __DEC32_EPSILON__ 1E-6DF +#define __FLT_EVAL_METHOD_TS_18661_3__ 0 +#define __UINT32_MAX__ 0xffffffffU +#define __GXX_EXPERIMENTAL_CXX0X__ 1 +#define __FLT128_MIN_EXP__ (-16381) +#define __WINT_MIN__ 0 +#define __FLT128_MIN_10_EXP__ (-4931) +#define __FLT32X_IS_IEC_60559__ 2 +#define __INT_LEAST16_WIDTH__ 16 +#define __SCHAR_MAX__ 0x7f +#define __FLT128_MANT_DIG__ 113 +#define __WCHAR_MIN__ 0 +#define __INT64_C(c) c ## LL +#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 +#define __FLT32X_MANT_DIG__ 53 +#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 +#define __cpp_aligned_new 201606L +#define __USER_LABEL_PREFIX__ +#define __FLT32_MAX_10_EXP__ 38 +#define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x +#define __STDC_HOSTED__ 1 +#define __DEC64_MIN_EXP__ (-382) +#define __WIN64 1 +#define __cpp_decltype_auto 201304L +#define __DBL_DIG__ 15 +#define __FLT32_DIG__ 6 +#define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F +#define __GXX_WEAK__ 1 +#define __SHRT_WIDTH__ 16 +#define __FLT32_IS_IEC_60559__ 2 +#define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L +#define __DBL_IS_IEC_60559__ 2 +#define __DEC32_MAX__ 9.999999E96DF +#define __cpp_threadsafe_static_init 200806L +#define __cpp_enumerator_attributes 201411L +#define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x +#define __FLT32X_HAS_INFINITY__ 1 +#define __INT32_MAX__ 0x7fffffff +#define __INT_WIDTH__ 32 +#define __SIZEOF_LONG__ 4 +#define __UINT16_C(c) c +#define __DECIMAL_DIG__ 21 +#define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 +#define __INT16_MAX__ 0x7fff +#define __FLT64_MIN_EXP__ (-1021) +#define __FLT64X_MIN_10_EXP__ (-4931) +#define __LDBL_HAS_QUIET_NAN__ 1 +#define __FLT64_MANT_DIG__ 53 +#define _REENTRANT 1 +#define __FLT64X_MANT_DIG__ 64 +#define __GNUC__ 11 +#define _cdecl __attribute__((__cdecl__)) +#define __GXX_RTTI 1 +#define __MMX__ 1 +#define __FLT_HAS_DENORM__ 1 +#define __SIZEOF_LONG_DOUBLE__ 16 +#define __BIGGEST_ALIGNMENT__ 16 +#define __STDC_UTF_16__ 1 +#define __FLT64_MAX_10_EXP__ 308 +#define __cpp_delegating_constructors 200604L +#define __FLT32_HAS_INFINITY__ 1 +#define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define _thiscall __attribute__((__thiscall__)) +#define __cpp_raw_strings 200710L +#define __INT_FAST32_MAX__ 0x7fffffff +#define __WINNT 1 +#define __DBL_HAS_INFINITY__ 1 +#define __SIZEOF_FLOAT__ 4 +#define __WINNT__ 1 +#define __HAVE_SPECULATION_SAFE_VALUE 1 +#define __cpp_fold_expressions 201603L +#define __DEC32_MIN_EXP__ (-94) +#define __INTPTR_WIDTH__ 64 +#define __FLT64X_HAS_INFINITY__ 1 +#define __UINT_LEAST32_MAX__ 0xffffffffU +#define __FLT32X_HAS_DENORM__ 1 +#define __INT_FAST16_TYPE__ short int +#define __MMX_WITH_SSE__ 1 +#define _fastcall __attribute__((__fastcall__)) +#define __LDBL_HAS_DENORM__ 1 +#define __cplusplus 201703L +#define __cpp_ref_qualifiers 200710L +#define __DEC32_MIN__ 1E-95DF +#define __DEPRECATED 1 +#define __cpp_rvalue_references 200610L +#define __DBL_MAX_EXP__ 1024 +#define __WCHAR_WIDTH__ 16 +#define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __DEC128_EPSILON__ 1E-33DL +#define __SSE2_MATH__ 1 +#define __ATOMIC_HLE_RELEASE 131072 +#define __WIN32__ 1 +#define __PTRDIFF_MAX__ 0x7fffffffffffffffLL +#define __amd64 1 +#define __tune_core2__ 1 +#define __ATOMIC_HLE_ACQUIRE 65536 +#define __GNUG__ 11 +#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL +#define __SIZEOF_SIZE_T__ 8 +#define __cpp_nsdmi 200809L +#define __FLT64X_MIN_EXP__ (-16381) +#define __SIZEOF_WINT_T__ 2 +#define __LONG_LONG_WIDTH__ 64 +#define __cpp_initializer_lists 200806L +#define __FLT32_MAX_EXP__ 128 +#define __cpp_hex_float 201603L +#define __GXX_ABI_VERSION 1016 +#define __FLT128_HAS_INFINITY__ 1 +#define __FLT_MIN_EXP__ (-125) +#define __GCC_HAVE_DWARF2_CFI_ASM 1 +#define __x86_64 1 +#define __cpp_lambdas 200907L +#define __INT_FAST64_TYPE__ long long int +#define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 +#define __cpp_template_auto 201606L +#define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L) +#define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 +#define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __SIZEOF_POINTER__ 8 +#define __SIZE_TYPE__ long long unsigned int +#define __DBL_HAS_QUIET_NAN__ 1 +#define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x +#define __DECIMAL_BID_FORMAT__ 1 +#define __GXX_TYPEINFO_EQUALITY_INLINE 0 +#define __FLT64_MIN_10_EXP__ (-307) +#define __FLT64X_DECIMAL_DIG__ 21 +#define __DEC128_MIN__ 1E-6143DL +#define __REGISTER_PREFIX__ +#define __UINT16_MAX__ 0xffff +#define __cdecl __attribute__((__cdecl__)) +#define __LDBL_HAS_INFINITY__ 1 +#define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 +#define __UINT8_TYPE__ unsigned char +#define __FLT_DIG__ 6 +#define __NO_INLINE__ 1 +#define __DEC_EVAL_METHOD__ 2 +#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL +#define __FLT_MANT_DIG__ 24 +#define __LDBL_DECIMAL_DIG__ 21 +#define __VERSION__ "11.2.0" +#define __UINT64_C(c) c ## ULL +#define __cpp_unicode_characters 201411L +#define _WIN32 1 +#define __SEH__ 1 +#define __INT_LEAST32_MAX__ 0x7fffffff +#define __GCC_ATOMIC_INT_LOCK_FREE 2 +#define __FLT128_MAX_EXP__ 16384 +#define __FLT32_MANT_DIG__ 24 +#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define __cpp_aggregate_bases 201603L +#define __FLT128_HAS_DENORM__ 1 +#define __FLT32_DECIMAL_DIG__ 9 +#define __FLT128_DIG__ 33 +#define __INT32_C(c) c +#define __DEC64_EPSILON__ 1E-15DD +#define __ORDER_PDP_ENDIAN__ 3412 +#define __DEC128_MIN_EXP__ (-6142) +#define __INT_FAST32_TYPE__ int +#define __UINT_LEAST16_TYPE__ short unsigned int +#define __DBL_HAS_DENORM__ 1 +#define __cpp_rtti 199711L +#define __UINT64_MAX__ 0xffffffffffffffffULL +#define __FLT_IS_IEC_60559__ 2 +#define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-16LE" +#define __FLT64X_DIG__ 18 +#define __INT8_TYPE__ signed char +#define __cpp_digit_separators 201309L +#define __GCC_ASM_FLAG_OUTPUTS__ 1 +#define __UINT32_TYPE__ unsigned int +#define __FLT_RADIX__ 2 +#define __INT_LEAST16_TYPE__ short int +#define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L +#define __UINTMAX_C(c) c ## ULL +#define __GLIBCXX_BITSIZE_INT_N_0 128 +#define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x +#define __SIG_ATOMIC_MAX__ 0x7fffffff +#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 +#define __SIZEOF_PTRDIFF_T__ 8 +#define __LDBL_DIG__ 18 +#define __FLT64_IS_IEC_60559__ 2 +#define __x86_64__ 1 +#define __FLT32X_MIN_EXP__ (-1021) +#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF +#define __MSVCRT__ 1 +#define __INT_FAST16_MAX__ 0x7fff +#define __FLT64_DIG__ 15 +#define __UINT_FAST32_MAX__ 0xffffffffU +#define __UINT_LEAST64_TYPE__ long long unsigned int +#define __FLT_HAS_QUIET_NAN__ 1 +#define __FLT_MAX_10_EXP__ 38 +#define __LONG_MAX__ 0x7fffffffL +#define __FLT64X_HAS_DENORM__ 1 +#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL +#define __FLT_HAS_INFINITY__ 1 +#define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" +#define __cpp_unicode_literals 200710L +#define __UINT_FAST16_TYPE__ short unsigned int +#define __DEC64_MAX__ 9.999999999999999E384DD +#define __INT_FAST32_WIDTH__ 32 +#define __CHAR16_TYPE__ short unsigned int +#define __PRAGMA_REDEFINE_EXTNAME 1 +#define __SIZE_WIDTH__ 64 +#define __SEG_FS 1 +#define __INT_LEAST16_MAX__ 0x7fff +#define __DEC64_MANT_DIG__ 16 +#define __INT64_MAX__ 0x7fffffffffffffffLL +#define __SEG_GS 1 +#define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 +#define __SIG_ATOMIC_WIDTH__ 32 +#define __INT_LEAST64_TYPE__ long long int +#define __INT16_TYPE__ short int +#define __INT_LEAST8_TYPE__ signed char +#define __nocona__ 1 +#define __cpp_structured_bindings 201606L +#define __SIZEOF_INT__ 4 +#define __DEC32_MAX_EXP__ 97 +#define __INT_FAST8_MAX__ 0x7f +#define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __INTPTR_MAX__ 0x7fffffffffffffffLL +#define __cpp_sized_deallocation 201309L +#define __cpp_guaranteed_copy_elision 201606L +#define __FLT64_HAS_QUIET_NAN__ 1 +#define __stdcall __attribute__((__stdcall__)) +#define __FLT32_MIN_10_EXP__ (-37) +#define __EXCEPTIONS 1 +#define __GXX_MERGED_TYPEINFO_NAMES 0 +#define __PTRDIFF_WIDTH__ 64 +#define __LDBL_MANT_DIG__ 64 +#define __cpp_range_based_for 201603L +#define __FLT64_HAS_INFINITY__ 1 +#define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16 +#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) +#define __GCC_ATOMIC_LONG_LOCK_FREE 2 +#define __cpp_nontype_template_args 201411L +#define __DEC32_MANT_DIG__ 7 +#define __cpp_return_type_deduction 201304L +#define __INTPTR_TYPE__ long long int +#define __UINT16_TYPE__ short unsigned int +#define __WCHAR_TYPE__ short unsigned int +#define __pic__ 1 +#define __UINTPTR_MAX__ 0xffffffffffffffffULL +#define __INT_FAST64_WIDTH__ 64 +#define __cpp_decltype 200707L +#define __INT_FAST64_MAX__ 0x7fffffffffffffffLL +#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 +#define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F +#define __FLT64X_MAX_EXP__ 16384 +#define __UINT_FAST64_TYPE__ long long unsigned int +#define __cpp_inline_variables 201606L +#define __INT_MAX__ 0x7fffffff +#define WIN32 1 +#define __nocona 1 +#define __code_model_medium__ 1 +#define __INT64_TYPE__ long long int +#define __FLT_MAX_EXP__ 128 +#define WIN64 1 +#define __ORDER_BIG_ENDIAN__ 4321 +#define __DBL_MANT_DIG__ 53 +#define __cpp_inheriting_constructors 201511L +#define __SIZEOF_FLOAT128__ 16 +#define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL +#define __DEC64_MIN__ 1E-383DD +#define __WINT_TYPE__ short unsigned int +#define __UINT_LEAST32_TYPE__ unsigned int +#define __SIZEOF_SHORT__ 2 +#define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __SSE__ 1 +#define __LDBL_MIN_EXP__ (-16381) +#define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __amd64__ 1 +#define __WINT_WIDTH__ 16 +#define __INT_LEAST64_WIDTH__ 64 +#define __LDBL_MAX_EXP__ 16384 +#define __FLT32X_MAX_10_EXP__ 308 +#define __WIN32 1 +#define __SIZEOF_INT128__ 16 +#define __FLT64X_IS_IEC_60559__ 2 +#define __WCHAR_UNSIGNED__ 1 +#define __LDBL_MAX_10_EXP__ 4932 +#define __ATOMIC_RELAXED 0 +#define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L) +#define __thiscall __attribute__((__thiscall__)) +#define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 +#define __UINT8_C(c) c +#define __FLT64_MAX_EXP__ 1024 +#define __INT_LEAST32_TYPE__ int +#define __SIZEOF_WCHAR_T__ 2 +#define __GNUC_PATCHLEVEL__ 0 +#define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __FLT128_HAS_QUIET_NAN__ 1 +#define __INTMAX_MAX__ 0x7fffffffffffffffLL +#define __SSE3__ 1 +#define __INT_FAST8_TYPE__ signed char +#define __fastcall __attribute__((__fastcall__)) +#define __cpp_namespace_attributes 201411L +#define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x +#define __STDCPP_THREADS__ 1 +#define __GNUC_STDC_INLINE__ 1 +#define __FLT64_HAS_DENORM__ 1 +#define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 +#define __DBL_DECIMAL_DIG__ 17 +#define __STDC_UTF_32__ 1 +#define __INT_FAST8_WIDTH__ 8 +#define __FXSR__ 1 +#define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __DBL_NORM_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define __MINGW64__ 1 +#define __INTMAX_WIDTH__ 64 +#define __cpp_runtime_arrays 198712L +#define __UINT64_TYPE__ long long unsigned int +#define __UINT32_C(c) c ## U +#define __cpp_alias_templates 200704L +#define WINNT 1 +#define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F +#define __FLT128_IS_IEC_60559__ 2 +#define __INT8_MAX__ 0x7f +#define __LONG_WIDTH__ 32 +#define __PIC__ 1 +#define __UINT_FAST32_TYPE__ unsigned int +#define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __CHAR32_TYPE__ unsigned int +#define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F +#define __cpp_constexpr 201603L +#define __SSE2__ 1 +#define __cpp_deduction_guides 201703L +#define __INT32_TYPE__ int +#define __SIZEOF_DOUBLE__ 8 +#define __cpp_exceptions 199711L +#define __FLT_MIN_10_EXP__ (-37) +#define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 +#define __INT_LEAST32_WIDTH__ 32 +#define __INTMAX_TYPE__ long long int +#define _INTEGRAL_MAX_BITS 64 +#define __DEC128_MAX_EXP__ 6145 +#define __FLT32X_HAS_QUIET_NAN__ 1 +#define __ATOMIC_CONSUME 1 +#define __GNUC_MINOR__ 2 +#define __GLIBCXX_TYPE_INT_N_0 __int128 +#define __INT_FAST16_WIDTH__ 16 +#define __UINTMAX_MAX__ 0xffffffffffffffffULL +#define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x +#define __cpp_template_template_args 201611L +#define __DBL_MAX_10_EXP__ 308 +#define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L +#define __INT16_C(c) c +#define __STDC__ 1 +#define __FLT32X_DIG__ 15 +#define __PTRDIFF_TYPE__ long long int +#define __ATOMIC_SEQ_CST 5 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 1 +#define __FLT32X_MIN_10_EXP__ (-307) +#define __UINTPTR_TYPE__ long long unsigned int +#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD +#define __DEC128_MANT_DIG__ 34 +#define __LDBL_MIN_10_EXP__ (-4931) +#define __cpp_generic_lambdas 201304L +#define __SSE_MATH__ 1 +#define __SIZEOF_LONG_LONG__ 8 +#define __cpp_user_defined_literals 200809L +#define __FLT128_DECIMAL_DIG__ 36 +#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 +#define __FLT32_HAS_QUIET_NAN__ 1 +#define __FLT_DECIMAL_DIG__ 9 +#define __UINT_FAST16_MAX__ 0xffff +#define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 +#define __UINT_FAST8_TYPE__ unsigned char +#define __WIN64__ 1 +#define __cpp_init_captures 201304L +#define __ATOMIC_ACQ_REL 4 +#define __ATOMIC_RELEASE 3 +#define __declspec(x) __attribute__((x)) diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_widget.cpp b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_widget.cpp new file mode 100644 index 0000000..67ae6fe --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_widget.cpp @@ -0,0 +1,144 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'widget.h' +** +** Created by: The Qt Meta Object Compiler version 68 (Qt 6.7.0) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../widget.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'widget.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 68 +#error "This file was generated using the moc from 6.7.0. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { + +#ifdef QT_MOC_HAS_STRINGDATA +struct qt_meta_stringdata_CLASSWidgetENDCLASS_t {}; +constexpr auto qt_meta_stringdata_CLASSWidgetENDCLASS = QtMocHelpers::stringData( + "Widget", + "on_Communication_clicked", + "", + "on_ControlDog_clicked", + "on_ControlUAV_clicked", + "on_InjuryDisplay_clicked" +); +#else // !QT_MOC_HAS_STRINGDATA +#error "qtmochelpers.h not found or too old." +#endif // !QT_MOC_HAS_STRINGDATA +} // unnamed namespace + +Q_CONSTINIT static const uint qt_meta_data_CLASSWidgetENDCLASS[] = { + + // content: + 12, // revision + 0, // classname + 0, 0, // classinfo + 4, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags, initial metatype offsets + 1, 0, 38, 2, 0x08, 1 /* Private */, + 3, 0, 39, 2, 0x08, 2 /* Private */, + 4, 0, 40, 2, 0x08, 3 /* Private */, + 5, 0, 41, 2, 0x08, 4 /* Private */, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + + 0 // eod +}; + +Q_CONSTINIT const QMetaObject Widget::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_CLASSWidgetENDCLASS.offsetsAndSizes, + qt_meta_data_CLASSWidgetENDCLASS, + qt_static_metacall, + nullptr, + qt_incomplete_metaTypeArray, + // method 'on_Communication_clicked' + QtPrivate::TypeAndForceComplete, + // method 'on_ControlDog_clicked' + QtPrivate::TypeAndForceComplete, + // method 'on_ControlUAV_clicked' + QtPrivate::TypeAndForceComplete, + // method 'on_InjuryDisplay_clicked' + QtPrivate::TypeAndForceComplete + >, + nullptr +} }; + +void Widget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_Communication_clicked(); break; + case 1: _t->on_ControlDog_clicked(); break; + case 2: _t->on_ControlUAV_clicked(); break; + case 3: _t->on_InjuryDisplay_clicked(); break; + default: ; + } + } + (void)_a; +} + +const QMetaObject *Widget::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *Widget::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_CLASSWidgetENDCLASS.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int Widget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 4) + qt_static_metacall(this, _c, _id, _a); + _id -= 4; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 4) + *reinterpret_cast(_a[0]) = QMetaType(); + _id -= 4; + } + return _id; +} +QT_WARNING_POP diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_widget.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_widget.o new file mode 100644 index 0000000..3b48b18 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/moc_widget.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/mocinclude.opt b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/mocinclude.opt new file mode 100644 index 0000000..8f6151a --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/mocinclude.opt @@ -0,0 +1,42 @@ +-ID:/Qt/6.7.0/mingw_64/mkspecs/win32-g++ +-ID:/QTpath/fly_land +-ID:/Qt/6.7.0/mingw_64/include +-ID:/Qt/6.7.0/mingw_64/include/QtQuickWidgets +-ID:/Qt/6.7.0/mingw_64/include/QtLocation +-ID:/Qt/6.7.0/mingw_64/include/QtPositioningQuick +-ID:/Qt/6.7.0/mingw_64/include/QtQuickShapes +-ID:/Qt/6.7.0/mingw_64/include/QtQuickShapes/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQuickShapes/6.7.0/QtQuickShapes +-ID:/Qt/6.7.0/mingw_64/include/QtQuick/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQuick/6.7.0/QtQuick +-ID:/Qt/6.7.0/mingw_64/include/QtQuick +-ID:/Qt/6.7.0/mingw_64/include/QtOpenGL +-ID:/Qt/6.7.0/mingw_64/include/QtMultimediaWidgets +-ID:/Qt/6.7.0/mingw_64/include/QtWidgets +-ID:/Qt/6.7.0/mingw_64/include/QtGui/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtGui/6.7.0/QtGui +-ID:/Qt/6.7.0/mingw_64/include/QtMultimedia +-ID:/Qt/6.7.0/mingw_64/include/QtGui +-ID:/Qt/6.7.0/mingw_64/include/QtQmlModels/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQmlModels/6.7.0/QtQmlModels +-ID:/Qt/6.7.0/mingw_64/include/QtQmlModels +-ID:/Qt/6.7.0/mingw_64/include/QtQml/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQml/6.7.0/QtQml +-ID:/Qt/6.7.0/mingw_64/include/QtQml +-ID:/Qt/6.7.0/mingw_64/include/QtQmlIntegration +-ID:/Qt/6.7.0/mingw_64/include/QtNetwork +-ID:/Qt/6.7.0/mingw_64/include/QtPositioning +-ID:/Qt/6.7.0/mingw_64/include/QtCore/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtCore/6.7.0/QtCore +-ID:/Qt/6.7.0/mingw_64/include/QtSql +-ID:/Qt/6.7.0/mingw_64/include/QtCore +-ID:/Qt/6.7.0/mingw_64/include/QtQmlBuiltins/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins +-ID:/Qt/6.7.0/mingw_64/include/QtQmlBuiltins +-I. +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++ +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32 +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed +-ID:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/object_script.fly_land.Debug b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/object_script.fly_land.Debug new file mode 100644 index 0000000..a64706f --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/object_script.fly_land.Debug @@ -0,0 +1,15 @@ +debug/CommunicationUI.o +debug/DogControlUI.o +debug/GuidingUI.o +debug/InjuryAnalysisUI.o +debug/InjuryDatabase.o +debug/InjuryDisplayUI.o +debug/UAVControlUI.o +debug/main.o +debug/qrc_Resource.o +debug/moc_CommunicationUI.o +debug/moc_DogControlUI.o +debug/moc_GuidingUI.o +debug/moc_InjuryAnalysisUI.o +debug/moc_InjuryDisplayUI.o +debug/moc_UAVControlUI.o diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/qrc_Resource.cpp b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/qrc_Resource.cpp new file mode 100644 index 0000000..18af0b8 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/qrc_Resource.cpp @@ -0,0 +1,340 @@ +/**************************************************************************** +** Resource object code +** +** Created by: The Resource Compiler for Qt version 6.7.0 +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +static const unsigned char qt_resource_data[] = { + // D:/QTpath/fly_land/map.qml + 0x0,0x0,0xf,0x9a, + 0x69, + 0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0xd,0xa,0x69, + 0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e, + 0xd,0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x50,0x6f,0x73,0x69,0x74, + 0x69,0x6f,0x6e,0x69,0x6e,0x67,0xd,0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51, + 0x74,0x51,0x75,0x69,0x63,0x6b,0x2e,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x73,0xd, + 0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x4c,0x6f,0x63,0x61,0x74,0x69, + 0x6f,0x6e,0x20,0x35,0x2e,0x31,0x35,0xd,0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20, + 0x51,0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x20,0x35,0x2e, + 0x31,0x35,0xd,0xa,0x52,0x65,0x63,0x74,0x61,0x6e,0x67,0x6c,0x65,0x20,0x7b,0xd, + 0xa,0x20,0x20,0x20,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x70,0x61,0x72,0x65, + 0x6e,0x74,0xd,0xa,0x20,0x20,0x20,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0xd,0xa,0x20,0x20,0x20,0x20,0x76,0x69,0x73,0x69, + 0x62,0x6c,0x65,0x3a,0x20,0x74,0x72,0x75,0x65,0xd,0xa,0xd,0xa,0x20,0x20,0x20, + 0x20,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x53,0x6f,0x75,0x72,0x63,0x65,0x20, + 0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x70, + 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x53,0x6f,0x75,0x72,0x63,0x65,0xd,0xa,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x20,0x74, + 0x72,0x75,0x65,0x20,0x2f,0x2f,0x20,0xe5,0x90,0xaf,0xe5,0x8a,0xa8,0xe4,0xbd,0x8d, + 0xe7,0xbd,0xae,0xe6,0x9c,0x8d,0xe5,0x8a,0xa1,0xd,0xa,0x20,0x20,0x20,0x20,0x7d, + 0xd,0xa,0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x6c, + 0x61,0x62,0x65,0x6c,0x63,0x70,0x70,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x4e,0x61,0x6d,0x65,0x3a,0x20,0x27,0x6c,0x61, + 0x62,0x65,0x6c,0x63,0x70,0x70,0x27,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x66,0x6f,0x6e,0x74,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x53,0x69,0x7a,0x65,0x3a, + 0x20,0x34,0x30,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f, + 0x70,0x65,0x72,0x74,0x79,0x20,0x72,0x65,0x61,0x6c,0x20,0x6c,0x61,0x74,0x69,0x74, + 0x75,0x64,0x65,0x53,0x61,0x76,0x65,0x3a,0x20,0x32,0x32,0x2e,0x36,0x34,0x30,0x31, + 0x38,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x70,0x65, + 0x72,0x74,0x79,0x20,0x72,0x65,0x61,0x6c,0x20,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75, + 0x64,0x65,0x53,0x61,0x76,0x65,0x3a,0x20,0x31,0x31,0x33,0x2e,0x39,0x32,0x37,0x34, + 0x36,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x63,0x70,0x70, + 0xe8,0xb0,0x83,0xe7,0x94,0xa8,0xe8,0xbf,0x99,0xe4,0xb8,0xaa,0xe5,0x87,0xbd,0xe6, + 0x95,0xb0,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63, + 0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x54,0x65,0x78,0x74,0x28,0x29,0xd,0xa, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x20,0x6d, + 0x61,0x70,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x20,0x2b,0x20,0x22,0x20,0x7a,0x6f, + 0x6f,0x6d,0x20,0x22,0x20,0x2b,0x20,0x6d,0x61,0x70,0x2e,0x7a,0x6f,0x6f,0x6d,0x4c, + 0x65,0x76,0x65,0x6c,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x33,0x29,0xd, + 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x2b,0x20,0x22,0x20,0x6d,0x69,0x6e,0x20,0x22,0x20,0x2b, + 0x20,0x6d,0x61,0x70,0x2e,0x6d,0x69,0x6e,0x69,0x6d,0x75,0x6d,0x5a,0x6f,0x6f,0x6d, + 0x4c,0x65,0x76,0x65,0x6c,0x20,0x2b,0x20,0x22,0x20,0x6d,0x61,0x78,0x20,0x22,0x20, + 0x2b,0x20,0x6d,0x61,0x70,0x2e,0x6d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x5a,0x6f,0x6f, + 0x6d,0x4c,0x65,0x76,0x65,0x6c,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63,0x74, + 0x69,0x6f,0x6e,0x20,0x73,0x65,0x74,0x43,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61,0x74, + 0x65,0x28,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x2c,0x6c,0x6f,0x6e,0x67,0x69, + 0x74,0x75,0x64,0x65,0x29,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7b, + 0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x61, + 0x74,0x69,0x74,0x75,0x64,0x65,0x53,0x61,0x76,0x65,0x20,0x3d,0x20,0x6c,0x61,0x74, + 0x69,0x74,0x75,0x64,0x65,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x53,0x61,0x76,0x65, + 0x20,0x3d,0x20,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0xd,0xa,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x63,0x65, + 0x6e,0x74,0x65,0x72,0x2e,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x20,0x3d,0x20, + 0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72, + 0x2e,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x20,0x3d,0x20,0x6c,0x6f,0x6e, + 0x67,0x69,0x74,0x75,0x64,0x65,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x28,0x29, + 0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f, + 0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x22,0x6c,0x61,0x74,0x69,0x74, + 0x75,0x64,0x65,0x3d,0x22,0x2b,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x2b,0x22, + 0x20,0x20,0x20,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x3d,0x22,0x2b,0x6c, + 0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x29,0x3b,0xd,0xa,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e, + 0x6c,0x6f,0x67,0x28,0x51,0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e, + 0x67,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x2e,0x63,0x6f,0x6f,0x72,0x64, + 0x69,0x6e,0x61,0x74,0x65,0x29,0x3b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0xd,0xa,0xd,0xa,0x20, + 0x20,0x20,0x20,0x50,0x6c,0x75,0x67,0x69,0x6e,0x20,0x7b,0xd,0xa,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x6d,0x61,0x70,0x50,0x6c,0x75,0x67, + 0x69,0x6e,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x20,0x22,0x6f,0x73,0x6d,0x22,0xd,0xa,0x20,0x20,0x20,0x20,0x7d,0xd,0xa, + 0xd,0xa,0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20,0x4d,0x61,0x70,0x20,0x7b,0xd, + 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x6d,0x61,0x70, + 0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6e, + 0x63,0x68,0x6f,0x72,0x73,0x2e,0x66,0x69,0x6c,0x6c,0x3a,0x20,0x70,0x61,0x72,0x65, + 0x6e,0x74,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x70,0x6c,0x75,0x67,0x69,0x6e,0x3a,0x20,0x6d,0x61,0x70,0x50,0x6c,0x75,0x67,0x69, + 0x6e,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63, + 0x65,0x6e,0x74,0x65,0x72,0x3a,0x20,0x51,0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f, + 0x6e,0x69,0x6e,0x67,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x2e,0x63,0x6f, + 0x6f,0x72,0x64,0x69,0x6e,0x61,0x74,0x65,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x3a, + 0x20,0x31,0x30,0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x50, + 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x53,0x6f,0x75,0x72,0x63,0x65,0x20,0x7b,0xd, + 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x70,0x6f,0x73,0x53,0x6f,0x75,0x72, + 0x63,0x65,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x20, + 0x74,0x72,0x75,0x65,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x50,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x64,0x3a,0x20,0x7b,0xd,0xa, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x63,0x65,0x6e,0x74, + 0x65,0x72,0x20,0x3d,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x2e,0x63,0x6f, + 0x6f,0x72,0x64,0x69,0x6e,0x61,0x74,0x65,0x20,0x2f,0x2f,0x20,0xe8,0xae,0xbe,0xe7, + 0xbd,0xae,0xe5,0x9c,0xb0,0xe5,0x9b,0xbe,0xe4,0xb8,0xad,0xe5,0xbf,0x83,0xd,0xa, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, + 0x53,0x6f,0x75,0x72,0x63,0x65,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x3d,0x20, + 0x66,0x61,0x6c,0x73,0x65,0x20,0x2f,0x2f,0x20,0xe7,0xa6,0x81,0xe7,0x94,0xa8,0xe4, + 0xbd,0x8d,0xe7,0xbd,0xae,0xe6,0x9c,0x8d,0xe5,0x8a,0xa1,0xd,0xa,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x50,0x69,0x6e,0x63,0x68,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x7b,0xd, + 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a, + 0x20,0x70,0x69,0x6e,0x63,0x68,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3a,0x20,0x6e,0x75,0x6c,0x6c, + 0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e, + 0x41,0x63,0x74,0x69,0x76,0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x64,0x3a,0x20,0x69, + 0x66,0x20,0x28,0x61,0x63,0x74,0x69,0x76,0x65,0x29,0x20,0x7b,0xd,0xa,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61, + 0x70,0x2e,0x73,0x74,0x61,0x72,0x74,0x43,0x65,0x6e,0x74,0x72,0x6f,0x69,0x64,0x20, + 0x3d,0x20,0x6d,0x61,0x70,0x2e,0x74,0x6f,0x43,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61, + 0x74,0x65,0x28,0x70,0x69,0x6e,0x63,0x68,0x2e,0x63,0x65,0x6e,0x74,0x72,0x6f,0x69, + 0x64,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x66,0x61,0x6c,0x73, + 0x65,0x29,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f, + 0x6e,0x53,0x63,0x61,0x6c,0x65,0x43,0x68,0x61,0x6e,0x67,0x65,0x64,0x3a,0x20,0x28, + 0x64,0x65,0x6c,0x74,0x61,0x29,0x20,0x3d,0x3e,0x20,0x7b,0xd,0xa,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70, + 0x2e,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x20,0x2b,0x3d,0x20,0x4d,0x61, + 0x74,0x68,0x2e,0x6c,0x6f,0x67,0x32,0x28,0x64,0x65,0x6c,0x74,0x61,0x29,0xd,0xa, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x6d,0x61,0x70,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x43,0x6f,0x6f,0x72,0x64,0x69,0x6e, + 0x61,0x74,0x65,0x54,0x6f,0x50,0x6f,0x69,0x6e,0x74,0x28,0x6d,0x61,0x70,0x2e,0x73, + 0x74,0x61,0x72,0x74,0x43,0x65,0x6e,0x74,0x72,0x6f,0x69,0x64,0x2c,0x20,0x70,0x69, + 0x6e,0x63,0x68,0x2e,0x63,0x65,0x6e,0x74,0x72,0x6f,0x69,0x64,0x2e,0x70,0x6f,0x73, + 0x69,0x74,0x69,0x6f,0x6e,0x29,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x6f,0x6e,0x52,0x6f,0x74,0x61,0x74,0x69,0x6f,0x6e,0x43,0x68,0x61, + 0x6e,0x67,0x65,0x64,0x3a,0x20,0x28,0x64,0x65,0x6c,0x74,0x61,0x29,0x20,0x3d,0x3e, + 0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x62,0x65,0x61,0x72,0x69,0x6e,0x67,0x20, + 0x2d,0x3d,0x20,0x64,0x65,0x6c,0x74,0x61,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x61,0x6c, + 0x69,0x67,0x6e,0x43,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61,0x74,0x65,0x54,0x6f,0x50, + 0x6f,0x69,0x6e,0x74,0x28,0x6d,0x61,0x70,0x2e,0x73,0x74,0x61,0x72,0x74,0x43,0x65, + 0x6e,0x74,0x72,0x6f,0x69,0x64,0x2c,0x20,0x70,0x69,0x6e,0x63,0x68,0x2e,0x63,0x65, + 0x6e,0x74,0x72,0x6f,0x69,0x64,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x29, + 0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd, + 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x67,0x72,0x61, + 0x62,0x50,0x65,0x72,0x6d,0x69,0x73,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x20,0x50,0x6f, + 0x69,0x6e,0x74,0x65,0x72,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x2e,0x54,0x61,0x6b, + 0x65,0x4f,0x76,0x65,0x72,0x46,0x6f,0x72,0x62,0x69,0x64,0x64,0x65,0x6e,0xd,0xa, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x57,0x68,0x65,0x65,0x6c,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20, + 0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69, + 0x64,0x3a,0x20,0x77,0x68,0x65,0x65,0x6c,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x77,0x6f,0x72,0x6b,0x61,0x72,0x6f, + 0x75,0x6e,0x64,0x20,0x66,0x6f,0x72,0x20,0x51,0x54,0x42,0x55,0x47,0x2d,0x38,0x37, + 0x36,0x34,0x36,0x20,0x2f,0x20,0x51,0x54,0x42,0x55,0x47,0x2d,0x31,0x31,0x32,0x33, + 0x39,0x34,0x20,0x2f,0x20,0x51,0x54,0x42,0x55,0x47,0x2d,0x31,0x31,0x32,0x34,0x33, + 0x32,0x3a,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x2f,0x2f,0x20,0x4d,0x61,0x67,0x69,0x63,0x20,0x4d,0x6f,0x75,0x73,0x65,0x20,0x70, + 0x72,0x65,0x74,0x65,0x6e,0x64,0x73,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x61,0x20, + 0x74,0x72,0x61,0x63,0x6b,0x70,0x61,0x64,0x20,0x62,0x75,0x74,0x20,0x64,0x6f,0x65, + 0x73,0x6e,0x27,0x74,0x20,0x77,0x6f,0x72,0x6b,0x20,0x77,0x69,0x74,0x68,0x20,0x50, + 0x69,0x6e,0x63,0x68,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0xd,0xa,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x61,0x6e,0x64,0x20, + 0x77,0x65,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x79,0x65,0x74,0x20,0x64,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x75,0x69,0x73,0x68,0x20,0x6d,0x69,0x63,0x65,0x20,0x61,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x6b,0x70,0x61,0x64,0x73,0x20,0x6f,0x6e,0x20,0x57, + 0x61,0x79,0x6c,0x61,0x6e,0x64,0x20,0x65,0x69,0x74,0x68,0x65,0x72,0xd,0xa,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x63,0x65,0x70, + 0x74,0x65,0x64,0x44,0x65,0x76,0x69,0x63,0x65,0x73,0x3a,0x20,0x51,0x74,0x2e,0x70, + 0x6c,0x61,0x74,0x66,0x6f,0x72,0x6d,0x2e,0x70,0x6c,0x75,0x67,0x69,0x6e,0x4e,0x61, + 0x6d,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x22,0x63,0x6f,0x63,0x6f,0x61,0x22,0x20,0x7c, + 0x7c,0x20,0x51,0x74,0x2e,0x70,0x6c,0x61,0x74,0x66,0x6f,0x72,0x6d,0x2e,0x70,0x6c, + 0x75,0x67,0x69,0x6e,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x22,0x77,0x61, + 0x79,0x6c,0x61,0x6e,0x64,0x22,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x44,0x65, + 0x76,0x69,0x63,0x65,0x2e,0x4d,0x6f,0x75,0x73,0x65,0x20,0x7c,0x20,0x50,0x6f,0x69, + 0x6e,0x74,0x65,0x72,0x44,0x65,0x76,0x69,0x63,0x65,0x2e,0x54,0x6f,0x75,0x63,0x68, + 0x50,0x61,0x64,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3a,0x20,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x44,0x65,0x76,0x69,0x63, + 0x65,0x2e,0x4d,0x6f,0x75,0x73,0x65,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x74,0x61,0x74,0x69,0x6f,0x6e,0x53,0x63,0x61, + 0x6c,0x65,0x3a,0x20,0x31,0x2f,0x31,0x32,0x30,0xd,0xa,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x3a, + 0x20,0x22,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x22,0xd,0xa,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x44,0x72,0x61,0x67,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x7b,0xd,0xa, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20, + 0x64,0x72,0x61,0x67,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0xd,0xa, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x54,0x72, + 0x61,0x6e,0x73,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x64, + 0x3a,0x20,0x28,0x64,0x65,0x6c,0x74,0x61,0x29,0x20,0x3d,0x3e,0x20,0x6d,0x61,0x70, + 0x2e,0x70,0x61,0x6e,0x28,0x2d,0x64,0x65,0x6c,0x74,0x61,0x2e,0x78,0x2c,0x20,0x2d, + 0x64,0x65,0x6c,0x74,0x61,0x2e,0x79,0x29,0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x53, + 0x68,0x6f,0x72,0x74,0x63,0x75,0x74,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x20, + 0x6d,0x61,0x70,0x2e,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x20,0x3c,0x20, + 0x6d,0x61,0x70,0x2e,0x6d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x5a,0x6f,0x6f,0x6d,0x4c, + 0x65,0x76,0x65,0x6c,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x73,0x65,0x71,0x75,0x65,0x6e,0x63,0x65,0x3a,0x20,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x72,0x64,0x4b,0x65,0x79,0x2e,0x5a,0x6f,0x6f,0x6d,0x49,0x6e,0xd,0xa, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x41,0x63, + 0x74,0x69,0x76,0x61,0x74,0x65,0x64,0x3a,0x20,0x6d,0x61,0x70,0x2e,0x7a,0x6f,0x6f, + 0x6d,0x4c,0x65,0x76,0x65,0x6c,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x6f, + 0x75,0x6e,0x64,0x28,0x6d,0x61,0x70,0x2e,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65, + 0x6c,0x20,0x2b,0x20,0x31,0x29,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x53,0x68,0x6f,0x72,0x74, + 0x63,0x75,0x74,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x20,0x6d,0x61,0x70,0x2e, + 0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x20,0x3e,0x20,0x6d,0x61,0x70,0x2e, + 0x6d,0x69,0x6e,0x69,0x6d,0x75,0x6d,0x5a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c, + 0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65, + 0x71,0x75,0x65,0x6e,0x63,0x65,0x3a,0x20,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, + 0x4b,0x65,0x79,0x2e,0x5a,0x6f,0x6f,0x6d,0x4f,0x75,0x74,0xd,0xa,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x41,0x63,0x74,0x69,0x76, + 0x61,0x74,0x65,0x64,0x3a,0x20,0x6d,0x61,0x70,0x2e,0x7a,0x6f,0x6f,0x6d,0x4c,0x65, + 0x76,0x65,0x6c,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x6f,0x75,0x6e,0x64, + 0x28,0x6d,0x61,0x70,0x2e,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x20,0x2d, + 0x20,0x31,0x29,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x43,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e, + 0x74,0x2e,0x6f,0x6e,0x43,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x3a,0x20,0x7b, + 0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61, + 0x70,0x2e,0x61,0x64,0x64,0x4d,0x61,0x70,0x49,0x74,0x65,0x6d,0x28,0x63,0x69,0x72, + 0x63,0x6c,0x65,0x29,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd, + 0xa,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x4d,0x61,0x70,0x43, + 0x69,0x72,0x63,0x6c,0x65,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x69,0x64,0x3a,0x20,0x63,0x69,0x72,0x63,0x6c,0x65,0xd,0xa,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3a,0x20,0x51,0x74,0x50, + 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x2e,0x63,0x6f,0x6f,0x72,0x64, + 0x69,0x6e,0x61,0x74,0x65,0x28,0x6c,0x61,0x62,0x65,0x6c,0x63,0x70,0x70,0x2e,0x6c, + 0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x53,0x61,0x76,0x65,0x2c,0x6c,0x61,0x62,0x65, + 0x6c,0x63,0x70,0x70,0x2e,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x53,0x61, + 0x76,0x65,0x29,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x61,0x64, + 0x69,0x75,0x73,0x3a,0x20,0x35,0x30,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2e,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x35, + 0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0xe9,0xbc, + 0xa0,0xe6,0xa0,0x87,0xe6,0x8c,0x89,0xe4,0xbd,0x8f,0xe5,0x90,0x8e,0xe5,0x8f,0xaf, + 0xe7,0xa7,0xbb,0xe5,0x8a,0xa8,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x4d,0x6f,0x75,0x73,0x65,0x41,0x72,0x65,0x61,0x20,0x7b,0xd,0xa,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6e,0x63,0x68,0x6f,0x72,0x73, + 0x2e,0x66,0x69,0x6c,0x6c,0x3a,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0xd,0xa,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x72,0x61,0x67,0x2e, + 0x74,0x61,0x72,0x67,0x65,0x74,0x3a,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0xd,0xa, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x7d, + 0xd,0xa,0x7d,0xd,0xa,0xd,0xa,0xd,0xa, + +}; + +static const unsigned char qt_resource_name[] = { + // map.qml + 0x0,0x7, + 0x3,0x83,0x58,0xdc, + 0x0,0x6d, + 0x0,0x61,0x0,0x70,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c, + +}; + +static const unsigned char qt_resource_struct[] = { + // : + 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/map.qml + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, +0x0,0x0,0x1,0x8f,0x43,0x96,0x1a,0x34, + +}; + +#ifdef QT_NAMESPACE +# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name +# define QT_RCC_MANGLE_NAMESPACE0(x) x +# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b +# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b) +# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \ + QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE)) +#else +# define QT_RCC_PREPEND_NAMESPACE(name) name +# define QT_RCC_MANGLE_NAMESPACE(name) name +#endif + +#ifdef QT_NAMESPACE +namespace QT_NAMESPACE { +#endif + +bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); +bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); + +#ifdef QT_NAMESPACE +} +#endif + +int QT_RCC_MANGLE_NAMESPACE(qInitResources_Resource)(); +int QT_RCC_MANGLE_NAMESPACE(qInitResources_Resource)() +{ + int version = 3; + QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData) + (version, qt_resource_struct, qt_resource_name, qt_resource_data); + return 1; +} + +int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_Resource)(); +int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_Resource)() +{ + int version = 3; + QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData) + (version, qt_resource_struct, qt_resource_name, qt_resource_data); + return 1; +} + +#ifdef __clang__ +# pragma clang diagnostic push +# pragma clang diagnostic ignored "-Wexit-time-destructors" +#endif + +namespace { + struct initializer { + initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_Resource)(); } + ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_Resource)(); } + } dummy; +} + +#ifdef __clang__ +# pragma clang diagnostic pop +#endif diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/qrc_Resource.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/qrc_Resource.o new file mode 100644 index 0000000..391bc33 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/qrc_Resource.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/widget.o b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/widget.o new file mode 100644 index 0000000..5f72252 Binary files /dev/null and b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/debug/widget.o differ diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/mocinclude.opt b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/mocinclude.opt new file mode 100644 index 0000000..8f6151a --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/mocinclude.opt @@ -0,0 +1,42 @@ +-ID:/Qt/6.7.0/mingw_64/mkspecs/win32-g++ +-ID:/QTpath/fly_land +-ID:/Qt/6.7.0/mingw_64/include +-ID:/Qt/6.7.0/mingw_64/include/QtQuickWidgets +-ID:/Qt/6.7.0/mingw_64/include/QtLocation +-ID:/Qt/6.7.0/mingw_64/include/QtPositioningQuick +-ID:/Qt/6.7.0/mingw_64/include/QtQuickShapes +-ID:/Qt/6.7.0/mingw_64/include/QtQuickShapes/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQuickShapes/6.7.0/QtQuickShapes +-ID:/Qt/6.7.0/mingw_64/include/QtQuick/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQuick/6.7.0/QtQuick +-ID:/Qt/6.7.0/mingw_64/include/QtQuick +-ID:/Qt/6.7.0/mingw_64/include/QtOpenGL +-ID:/Qt/6.7.0/mingw_64/include/QtMultimediaWidgets +-ID:/Qt/6.7.0/mingw_64/include/QtWidgets +-ID:/Qt/6.7.0/mingw_64/include/QtGui/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtGui/6.7.0/QtGui +-ID:/Qt/6.7.0/mingw_64/include/QtMultimedia +-ID:/Qt/6.7.0/mingw_64/include/QtGui +-ID:/Qt/6.7.0/mingw_64/include/QtQmlModels/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQmlModels/6.7.0/QtQmlModels +-ID:/Qt/6.7.0/mingw_64/include/QtQmlModels +-ID:/Qt/6.7.0/mingw_64/include/QtQml/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQml/6.7.0/QtQml +-ID:/Qt/6.7.0/mingw_64/include/QtQml +-ID:/Qt/6.7.0/mingw_64/include/QtQmlIntegration +-ID:/Qt/6.7.0/mingw_64/include/QtNetwork +-ID:/Qt/6.7.0/mingw_64/include/QtPositioning +-ID:/Qt/6.7.0/mingw_64/include/QtCore/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtCore/6.7.0/QtCore +-ID:/Qt/6.7.0/mingw_64/include/QtSql +-ID:/Qt/6.7.0/mingw_64/include/QtCore +-ID:/Qt/6.7.0/mingw_64/include/QtQmlBuiltins/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins +-ID:/Qt/6.7.0/mingw_64/include/QtQmlBuiltins +-I. +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++ +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32 +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed +-ID:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/release/mocinclude.opt b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/release/mocinclude.opt new file mode 100644 index 0000000..8f6151a --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/release/mocinclude.opt @@ -0,0 +1,42 @@ +-ID:/Qt/6.7.0/mingw_64/mkspecs/win32-g++ +-ID:/QTpath/fly_land +-ID:/Qt/6.7.0/mingw_64/include +-ID:/Qt/6.7.0/mingw_64/include/QtQuickWidgets +-ID:/Qt/6.7.0/mingw_64/include/QtLocation +-ID:/Qt/6.7.0/mingw_64/include/QtPositioningQuick +-ID:/Qt/6.7.0/mingw_64/include/QtQuickShapes +-ID:/Qt/6.7.0/mingw_64/include/QtQuickShapes/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQuickShapes/6.7.0/QtQuickShapes +-ID:/Qt/6.7.0/mingw_64/include/QtQuick/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQuick/6.7.0/QtQuick +-ID:/Qt/6.7.0/mingw_64/include/QtQuick +-ID:/Qt/6.7.0/mingw_64/include/QtOpenGL +-ID:/Qt/6.7.0/mingw_64/include/QtMultimediaWidgets +-ID:/Qt/6.7.0/mingw_64/include/QtWidgets +-ID:/Qt/6.7.0/mingw_64/include/QtGui/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtGui/6.7.0/QtGui +-ID:/Qt/6.7.0/mingw_64/include/QtMultimedia +-ID:/Qt/6.7.0/mingw_64/include/QtGui +-ID:/Qt/6.7.0/mingw_64/include/QtQmlModels/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQmlModels/6.7.0/QtQmlModels +-ID:/Qt/6.7.0/mingw_64/include/QtQmlModels +-ID:/Qt/6.7.0/mingw_64/include/QtQml/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQml/6.7.0/QtQml +-ID:/Qt/6.7.0/mingw_64/include/QtQml +-ID:/Qt/6.7.0/mingw_64/include/QtQmlIntegration +-ID:/Qt/6.7.0/mingw_64/include/QtNetwork +-ID:/Qt/6.7.0/mingw_64/include/QtPositioning +-ID:/Qt/6.7.0/mingw_64/include/QtCore/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtCore/6.7.0/QtCore +-ID:/Qt/6.7.0/mingw_64/include/QtSql +-ID:/Qt/6.7.0/mingw_64/include/QtCore +-ID:/Qt/6.7.0/mingw_64/include/QtQmlBuiltins/6.7.0 +-ID:/Qt/6.7.0/mingw_64/include/QtQmlBuiltins/6.7.0/QtQmlBuiltins +-ID:/Qt/6.7.0/mingw_64/include/QtQmlBuiltins +-I. +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++ +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/x86_64-w64-mingw32 +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include/c++/backward +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include +-ID:/Qt/Tools/mingw1120_64/lib/gcc/x86_64-w64-mingw32/11.2.0/include-fixed +-ID:/Qt/Tools/mingw1120_64/x86_64-w64-mingw32/include diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/release/object_script.fly_land.Release b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/release/object_script.fly_land.Release new file mode 100644 index 0000000..025cb9a --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/release/object_script.fly_land.Release @@ -0,0 +1,15 @@ +release/CommunicationUI.o +release/DogControlUI.o +release/GuidingUI.o +release/InjuryAnalysisUI.o +release/InjuryDatabase.o +release/InjuryDisplayUI.o +release/UAVControlUI.o +release/main.o +release/qrc_Resource.o +release/moc_CommunicationUI.o +release/moc_DogControlUI.o +release/moc_GuidingUI.o +release/moc_InjuryAnalysisUI.o +release/moc_InjuryDisplayUI.o +release/moc_UAVControlUI.o diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_CommunicationUI.h b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_CommunicationUI.h new file mode 100644 index 0000000..5887a47 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_CommunicationUI.h @@ -0,0 +1,46 @@ +/******************************************************************************** +** Form generated from reading UI file 'CommunicationUI.ui' +** +** Created by: Qt User Interface Compiler version 6.7.0 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_COMMUNICATIONUI_H +#define UI_COMMUNICATIONUI_H + +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_CommunicationUI +{ +public: + + void setupUi(QWidget *CommunicationUI) + { + if (CommunicationUI->objectName().isEmpty()) + CommunicationUI->setObjectName("CommunicationUI"); + CommunicationUI->resize(400, 300); + + retranslateUi(CommunicationUI); + + QMetaObject::connectSlotsByName(CommunicationUI); + } // setupUi + + void retranslateUi(QWidget *CommunicationUI) + { + CommunicationUI->setWindowTitle(QCoreApplication::translate("CommunicationUI", "Form", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class CommunicationUI: public Ui_CommunicationUI {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_COMMUNICATIONUI_H diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_DogControUI.h b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_DogControUI.h new file mode 100644 index 0000000..bfabb44 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_DogControUI.h @@ -0,0 +1,46 @@ +/******************************************************************************** +** Form generated from reading UI file 'DogControUI.ui' +** +** Created by: Qt User Interface Compiler version 6.7.0 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_DOGCONTROUI_H +#define UI_DOGCONTROUI_H + +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_DogControlUI +{ +public: + + void setupUi(QWidget *DogControlUI) + { + if (DogControlUI->objectName().isEmpty()) + DogControlUI->setObjectName("DogControlUI"); + DogControlUI->resize(400, 300); + + retranslateUi(DogControlUI); + + QMetaObject::connectSlotsByName(DogControlUI); + } // setupUi + + void retranslateUi(QWidget *DogControlUI) + { + DogControlUI->setWindowTitle(QCoreApplication::translate("DogControlUI", "Form", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class DogControlUI: public Ui_DogControlUI {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_DOGCONTROUI_H diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_DogControlUI.h b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_DogControlUI.h new file mode 100644 index 0000000..d759f0f --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_DogControlUI.h @@ -0,0 +1,46 @@ +/******************************************************************************** +** Form generated from reading UI file 'DogControlUI.ui' +** +** Created by: Qt User Interface Compiler version 6.7.0 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_DOGCONTROLUI_H +#define UI_DOGCONTROLUI_H + +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_DogControlUI +{ +public: + + void setupUi(QWidget *DogControlUI) + { + if (DogControlUI->objectName().isEmpty()) + DogControlUI->setObjectName("DogControlUI"); + DogControlUI->resize(400, 300); + + retranslateUi(DogControlUI); + + QMetaObject::connectSlotsByName(DogControlUI); + } // setupUi + + void retranslateUi(QWidget *DogControlUI) + { + DogControlUI->setWindowTitle(QCoreApplication::translate("DogControlUI", "Form", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class DogControlUI: public Ui_DogControlUI {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_DOGCONTROLUI_H diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_GuidingUI.h b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_GuidingUI.h new file mode 100644 index 0000000..2ca1080 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_GuidingUI.h @@ -0,0 +1,89 @@ +/******************************************************************************** +** Form generated from reading UI file 'GuidingUI.ui' +** +** Created by: Qt User Interface Compiler version 6.7.0 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_GUIDINGUI_H +#define UI_GUIDINGUI_H + +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_GuidingUI +{ +public: + QWidget *layoutWidget; + QVBoxLayout *verticalLayout; + QPushButton *Communication; + QPushButton *ControlUAV; + QPushButton *ControlDog; + QPushButton *InjuryDisplay; + + void setupUi(QWidget *GuidingUI) + { + if (GuidingUI->objectName().isEmpty()) + GuidingUI->setObjectName("GuidingUI"); + GuidingUI->resize(609, 450); + layoutWidget = new QWidget(GuidingUI); + layoutWidget->setObjectName("layoutWidget"); + layoutWidget->setGeometry(QRect(150, 30, 301, 361)); + verticalLayout = new QVBoxLayout(layoutWidget); + verticalLayout->setObjectName("verticalLayout"); + verticalLayout->setContentsMargins(0, 0, 0, 0); + Communication = new QPushButton(layoutWidget); + Communication->setObjectName("Communication"); + Communication->setIconSize(QSize(12, 30)); + + verticalLayout->addWidget(Communication); + + ControlUAV = new QPushButton(layoutWidget); + ControlUAV->setObjectName("ControlUAV"); + ControlUAV->setIconSize(QSize(12, 30)); + + verticalLayout->addWidget(ControlUAV); + + ControlDog = new QPushButton(layoutWidget); + ControlDog->setObjectName("ControlDog"); + ControlDog->setIconSize(QSize(12, 30)); + + verticalLayout->addWidget(ControlDog); + + InjuryDisplay = new QPushButton(layoutWidget); + InjuryDisplay->setObjectName("InjuryDisplay"); + InjuryDisplay->setMinimumSize(QSize(0, 0)); + InjuryDisplay->setIconSize(QSize(12, 40)); + + verticalLayout->addWidget(InjuryDisplay); + + + retranslateUi(GuidingUI); + + QMetaObject::connectSlotsByName(GuidingUI); + } // setupUi + + void retranslateUi(QWidget *GuidingUI) + { + GuidingUI->setWindowTitle(QCoreApplication::translate("GuidingUI", "Widget", nullptr)); + Communication->setText(QCoreApplication::translate("GuidingUI", "\350\277\234\347\250\213\344\272\244\344\272\222\346\225\221\345\212\251", nullptr)); + ControlUAV->setText(QCoreApplication::translate("GuidingUI", "\346\216\247\345\210\266\346\227\240\344\272\272\346\234\272", nullptr)); + ControlDog->setText(QCoreApplication::translate("GuidingUI", "\346\216\247\345\210\266\346\234\272\345\231\250\347\213\227", nullptr)); + InjuryDisplay->setText(QCoreApplication::translate("GuidingUI", "\344\274\244\346\203\205\346\200\201\345\212\277\346\230\276\347\244\272", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class GuidingUI: public Ui_GuidingUI {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_GUIDINGUI_H diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_InjuryAnalysisUI.h b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_InjuryAnalysisUI.h new file mode 100644 index 0000000..ae687bf --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_InjuryAnalysisUI.h @@ -0,0 +1,52 @@ +/******************************************************************************** +** Form generated from reading UI file 'InjuryAnalysisUI.ui' +** +** Created by: Qt User Interface Compiler version 6.7.0 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_INJURYANALYSISUI_H +#define UI_INJURYANALYSISUI_H + +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_InjuryAnalysisUI +{ +public: + QLabel *label; + + void setupUi(QWidget *InjuryAnalysisUI) + { + if (InjuryAnalysisUI->objectName().isEmpty()) + InjuryAnalysisUI->setObjectName("InjuryAnalysisUI"); + InjuryAnalysisUI->resize(400, 300); + label = new QLabel(InjuryAnalysisUI); + label->setObjectName("label"); + label->setGeometry(QRect(140, 50, 91, 51)); + + retranslateUi(InjuryAnalysisUI); + + QMetaObject::connectSlotsByName(InjuryAnalysisUI); + } // setupUi + + void retranslateUi(QWidget *InjuryAnalysisUI) + { + InjuryAnalysisUI->setWindowTitle(QCoreApplication::translate("InjuryAnalysisUI", "Form", nullptr)); + label->setText(QCoreApplication::translate("InjuryAnalysisUI", "\347\233\256\345\211\215\344\274\244\344\272\241\346\203\205\345\206\265\357\274\232", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class InjuryAnalysisUI: public Ui_InjuryAnalysisUI {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_INJURYANALYSISUI_H diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_InjuryDisplayUI.h b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_InjuryDisplayUI.h new file mode 100644 index 0000000..2af0455 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_InjuryDisplayUI.h @@ -0,0 +1,68 @@ +/******************************************************************************** +** Form generated from reading UI file 'InjuryDisplayUI.ui' +** +** Created by: Qt User Interface Compiler version 6.7.0 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_INJURYDISPLAYUI_H +#define UI_INJURYDISPLAYUI_H + +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_InjuryDisplayUI +{ +public: + QPushButton *InjuryAnaysis; + QPushButton *MapButton; + QWidget *Widget; + QQuickWidget *quickWidget; + + void setupUi(QWidget *InjuryDisplayUI) + { + if (InjuryDisplayUI->objectName().isEmpty()) + InjuryDisplayUI->setObjectName("InjuryDisplayUI"); + InjuryDisplayUI->resize(600, 370); + InjuryAnaysis = new QPushButton(InjuryDisplayUI); + InjuryAnaysis->setObjectName("InjuryAnaysis"); + InjuryAnaysis->setGeometry(QRect(510, 10, 81, 31)); + MapButton = new QPushButton(InjuryDisplayUI); + MapButton->setObjectName("MapButton"); + MapButton->setGeometry(QRect(210, 330, 161, 31)); + Widget = new QWidget(InjuryDisplayUI); + Widget->setObjectName("Widget"); + Widget->setGeometry(QRect(10, 50, 581, 271)); + quickWidget = new QQuickWidget(InjuryDisplayUI); + quickWidget->setObjectName("quickWidget"); + quickWidget->setGeometry(QRect(10, 60, 571, 251)); + quickWidget->setResizeMode(QQuickWidget::SizeRootObjectToView); + quickWidget->setSource(QUrl(QString::fromUtf8("qrc:/map.qml"))); + + retranslateUi(InjuryDisplayUI); + + QMetaObject::connectSlotsByName(InjuryDisplayUI); + } // setupUi + + void retranslateUi(QWidget *InjuryDisplayUI) + { + InjuryDisplayUI->setWindowTitle(QCoreApplication::translate("InjuryDisplayUI", "Form", nullptr)); + InjuryAnaysis->setText(QCoreApplication::translate("InjuryDisplayUI", "\345\210\206\346\236\220\345\275\223\345\211\215\344\274\244\346\203\205", nullptr)); + MapButton->setText(QCoreApplication::translate("InjuryDisplayUI", "\346\211\223\345\215\260\347\273\217\347\272\254\345\272\246", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class InjuryDisplayUI: public Ui_InjuryDisplayUI {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_INJURYDISPLAYUI_H diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_UAVControlUI.h b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_UAVControlUI.h new file mode 100644 index 0000000..b8ecb61 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_UAVControlUI.h @@ -0,0 +1,46 @@ +/******************************************************************************** +** Form generated from reading UI file 'UAVControlUI.ui' +** +** Created by: Qt User Interface Compiler version 6.7.0 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_UAVCONTROLUI_H +#define UI_UAVCONTROLUI_H + +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_UAVControlUI +{ +public: + + void setupUi(QWidget *UAVControlUI) + { + if (UAVControlUI->objectName().isEmpty()) + UAVControlUI->setObjectName("UAVControlUI"); + UAVControlUI->resize(400, 300); + + retranslateUi(UAVControlUI); + + QMetaObject::connectSlotsByName(UAVControlUI); + } // setupUi + + void retranslateUi(QWidget *UAVControlUI) + { + UAVControlUI->setWindowTitle(QCoreApplication::translate("UAVControlUI", "Form", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class UAVControlUI: public Ui_UAVControlUI {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_UAVCONTROLUI_H diff --git a/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_widget.h b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_widget.h new file mode 100644 index 0000000..040daa1 --- /dev/null +++ b/src/Client2/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug/ui_widget.h @@ -0,0 +1,86 @@ +/******************************************************************************** +** Form generated from reading UI file 'widget.ui' +** +** Created by: Qt User Interface Compiler version 6.7.0 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_WIDGET_H +#define UI_WIDGET_H + +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_Widget +{ +public: + QWidget *widget; + QVBoxLayout *verticalLayout; + QPushButton *Communication; + QPushButton *ControlUAV; + QPushButton *ControlDog; + QPushButton *InjuryDisplay; + + void setupUi(QWidget *Widget) + { + if (Widget->objectName().isEmpty()) + Widget->setObjectName("Widget"); + Widget->resize(609, 450); + widget = new QWidget(Widget); + widget->setObjectName("widget"); + widget->setGeometry(QRect(140, 50, 301, 361)); + verticalLayout = new QVBoxLayout(widget); + verticalLayout->setObjectName("verticalLayout"); + verticalLayout->setContentsMargins(0, 0, 0, 0); + Communication = new QPushButton(widget); + Communication->setObjectName("Communication"); + + verticalLayout->addWidget(Communication); + + ControlUAV = new QPushButton(widget); + ControlUAV->setObjectName("ControlUAV"); + + verticalLayout->addWidget(ControlUAV); + + ControlDog = new QPushButton(widget); + ControlDog->setObjectName("ControlDog"); + + verticalLayout->addWidget(ControlDog); + + InjuryDisplay = new QPushButton(widget); + InjuryDisplay->setObjectName("InjuryDisplay"); + InjuryDisplay->setMinimumSize(QSize(0, 0)); + InjuryDisplay->setIconSize(QSize(12, 12)); + + verticalLayout->addWidget(InjuryDisplay); + + + retranslateUi(Widget); + + QMetaObject::connectSlotsByName(Widget); + } // setupUi + + void retranslateUi(QWidget *Widget) + { + Widget->setWindowTitle(QCoreApplication::translate("Widget", "Widget", nullptr)); + Communication->setText(QCoreApplication::translate("Widget", "\350\277\234\347\250\213\344\272\244\344\272\222\346\225\221\345\212\251", nullptr)); + ControlUAV->setText(QCoreApplication::translate("Widget", "\346\216\247\345\210\266\346\227\240\344\272\272\346\234\272", nullptr)); + ControlDog->setText(QCoreApplication::translate("Widget", "\346\216\247\345\210\266\346\234\272\345\231\250\347\213\227", nullptr)); + InjuryDisplay->setText(QCoreApplication::translate("Widget", "\344\274\244\346\203\205\346\200\201\345\212\277\346\230\276\347\244\272", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class Widget: public Ui_Widget {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_WIDGET_H diff --git a/src/Client2/fly_land/fly_land.pro b/src/Client2/fly_land/fly_land.pro new file mode 100644 index 0000000..e64e0aa --- /dev/null +++ b/src/Client2/fly_land/fly_land.pro @@ -0,0 +1,51 @@ +QT += core gui +QT += core gui quickwidgets positioning location +QT += multimedia +QT += multimediawidgets +QT += sql + +win32: LIBS += -lAdvAPI32 + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +CONFIG += c++17 + +# You can make your code fail to compile if it uses deprecated APIs. +# In order to do so, uncomment the following line. +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 + +SOURCES += \ + CommunicationUI.cpp \ + DogControlUI.cpp \ + GuidingUI.cpp \ + InjuryAnalysisUI.cpp \ + InjuryDatabase.cpp \ + InjuryDisplayUI.cpp \ + UAVControlUI.cpp \ + main.cpp + +HEADERS += \ + CommunicationUI.h \ + DogControlUI.h \ + GuidingUI.h \ + InjuryAnalysisUI.h \ + InjuryDatabase.h \ + InjuryDisplayUI.h \ + UAVControlUI.h + +FORMS += \ + CommunicationUI.ui \ + DogControlUI.ui \ + GuidingUI.ui \ + InjuryAnalysisUI.ui \ + InjuryDisplayUI.ui \ + UAVControlUI.ui + +# Default rules for deployment. +qnx: target.path = /tmp/$${TARGET}/bin +else: unix:!android: target.path = /opt/$${TARGET}/bin +!isEmpty(target.path): INSTALLS += target + +RESOURCES += \ + Resource.qrc \ + 资源文件.qrc diff --git a/src/Client2/fly_land/fly_land.pro.user b/src/Client2/fly_land/fly_land.pro.user new file mode 100644 index 0000000..16075d6 --- /dev/null +++ b/src/Client2/fly_land/fly_land.pro.user @@ -0,0 +1,268 @@ + + + + + + EnvironmentId + {8ac0f42e-241c-4bef-bc6a-675f226685db} + + + ProjectExplorer.Project.ActiveTarget + 0 + + + ProjectExplorer.Project.EditorSettings + + true + false + true + + Cpp + + CppGlobal + + + + QmlJS + + QmlJSGlobal + + + 2 + UTF-8 + false + 4 + false + 80 + true + true + 1 + 0 + false + true + false + 2 + true + true + 0 + 8 + true + false + 1 + true + true + true + *.md, *.MD, Makefile + false + true + true + + + + ProjectExplorer.Project.PluginSettings + + + true + false + true + true + true + true + + + 0 + true + + true + true + Builtin.DefaultTidyAndClazy + 8 + true + + + + true + + + + + ProjectExplorer.Project.Target.0 + + Desktop + Desktop Qt 6.7.0 MinGW 64-bit + Desktop Qt 6.7.0 MinGW 64-bit + qt.qt6.670.win64_mingw_kit + 0 + 0 + 0 + + 0 + D:\QTpath\fly_land\build\Desktop_Qt_6_7_0_MinGW_64_bit-Debug + D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug + + + true + QtProjectManager.QMakeBuildStep + false + + + + true + Qt4ProjectManager.MakeStep + + 2 + 构建 + 构建 + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + clean + + 1 + 清除 + 清除 + ProjectExplorer.BuildSteps.Clean + + 2 + false + + false + + Debug + Qt4ProjectManager.Qt4BuildConfiguration + 2 + + + D:\QTpath\fly_land\build\Desktop_Qt_6_7_0_MinGW_64_bit-Release + D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Release + + + true + QtProjectManager.QMakeBuildStep + false + + + + true + Qt4ProjectManager.MakeStep + + 2 + 构建 + 构建 + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + clean + + 1 + 清除 + 清除 + ProjectExplorer.BuildSteps.Clean + + 2 + false + + false + + Release + Qt4ProjectManager.Qt4BuildConfiguration + 0 + 0 + + + 0 + D:\QTpath\fly_land\build\Desktop_Qt_6_7_0_MinGW_64_bit-Profile + D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Profile + + + true + QtProjectManager.QMakeBuildStep + false + + + + true + Qt4ProjectManager.MakeStep + + 2 + 构建 + 构建 + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + clean + + 1 + 清除 + 清除 + ProjectExplorer.BuildSteps.Clean + + 2 + false + + false + + Profile + Qt4ProjectManager.Qt4BuildConfiguration + 0 + 0 + 0 + + 3 + + + 0 + 部署 + 部署 + ProjectExplorer.BuildSteps.Deploy + + 1 + + false + ProjectExplorer.DefaultDeployConfiguration + + 1 + + true + true + 0 + true + + 2 + + false + -e cpu-cycles --call-graph "dwarf,4096" -F 250 + + Qt4ProjectManager.Qt4RunConfiguration:D:/QTpath/fly_land/fly_land.pro + D:/QTpath/fly_land/fly_land.pro + false + true + true + true + D:/QTpath/fly_land/build/Desktop_Qt_6_7_0_MinGW_64_bit-Debug + + 1 + + + + ProjectExplorer.Project.TargetCount + 1 + + + ProjectExplorer.Project.Updater.FileVersion + 22 + + + Version + 22 + + diff --git a/src/Client2/fly_land/main.cpp b/src/Client2/fly_land/main.cpp new file mode 100644 index 0000000..46fb9ae --- /dev/null +++ b/src/Client2/fly_land/main.cpp @@ -0,0 +1,63 @@ +#include "GuidingUI.h" +#include "InjuryDatabase.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + GuidingUI w; + w.setWindowTitle("GuidingUI"); + w.show(); + + // QSqlDatabase db=QSqlDatabase::addDatabase("QMYSQL"); + // db.setHostName("localhost"); // 本地数据库 远程DB是:ipaddress + // db.setPort(3306); // 设置端口号 + // db.setDatabaseName("fly_land_database"); // 使用的数据库 sql = use '数据库名' + // db.setUserName("root"); + // db.setPassword("684542"); + // if(db.open()){ + // qDebug()<<"成功"; + // }else{ + // qDebug()<<"失败"; + // } + + InjuryDatabase injuryDatabase; + if(injuryDatabase.open("fly_land_database","root","684542")) + { + QList result; + injuryDatabase.select("injurydatabase", result); + for(int i = 0; i { + map.zoomLevel += Math.log2(delta) + map.alignCoordinateToPoint(map.startCentroid, pinch.centroid.position) + } + onRotationChanged: (delta) => { + map.bearing -= delta + map.alignCoordinateToPoint(map.startCentroid, pinch.centroid.position) + } + grabPermissions: PointerHandler.TakeOverForbidden + } + WheelHandler { + id: wheel + // workaround for QTBUG-87646 / QTBUG-112394 / QTBUG-112432: + // Magic Mouse pretends to be a trackpad but doesn't work with PinchHandler + // and we don't yet distinguish mice and trackpads on Wayland either + acceptedDevices: Qt.platform.pluginName === "cocoa" || Qt.platform.pluginName === "wayland" + ? PointerDevice.Mouse | PointerDevice.TouchPad + : PointerDevice.Mouse + rotationScale: 1/120 + property: "zoomLevel" + } + DragHandler { + id: drag + target: null + onTranslationChanged: (delta) => map.pan(-delta.x, -delta.y) + + } + Shortcut { + enabled: map.zoomLevel < map.maximumZoomLevel + sequence: StandardKey.ZoomIn + onActivated: map.zoomLevel = Math.round(map.zoomLevel + 1) + } + Shortcut { + enabled: map.zoomLevel > map.minimumZoomLevel + sequence: StandardKey.ZoomOut + onActivated: map.zoomLevel = Math.round(map.zoomLevel - 1) + } + Component.onCompleted: { + map.addMapItem(circle) + } + } + MapCircle { + id: circle + center: QtPositioning.coordinate(labelcpp.latitudeSave,labelcpp.longitudeSave) + radius: 50 + border.width: 5 + + //鼠标按住后可移动 + MouseArea { + anchors.fill: parent + drag.target: parent + } + } +} + + diff --git a/src/Client2/fly_land/资源文件.qrc b/src/Client2/fly_land/资源文件.qrc new file mode 100644 index 0000000..7646d2b --- /dev/null +++ b/src/Client2/fly_land/资源文件.qrc @@ -0,0 +1 @@ +